Files
ygg-service/frontend/templates/base.html

43 lines
1.1 KiB
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') }}">
<style>
/* Position du fond Matrix */
#matrix {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none; /* pour éviter tout blocage des clics */
}
</style>
</head>
<body>
<!-- Fond Matrix -->
{% block matrix %}{% endblock %}
<header>
<h1>Les films de Lulu</h1>
{% if user %}
<p class="user-info">
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>