27 lines
719 B
HTML
27 lines
719 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}Yggtorrent App{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Les films de Lulu</h1>
|
|
{% if user %}
|
|
<p>Connecté en tant que {{ user }}</p>
|
|
<form action="{{ url_for('logout') }}" method="GET" style="display:inline">
|
|
<button type="submit">Déconnexion</button>
|
|
</form>
|
|
{% endif %}
|
|
</header>
|
|
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
|
|
</body>
|
|
</html>
|