Add matrix background and prepare filters

This commit is contained in:
2025-11-11 18:48:31 +01:00
parent 06d0e1c426
commit b4b75f9545
7 changed files with 304 additions and 37 deletions

View File

@@ -4,14 +4,30 @@
<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>Connecté en tant que {{ user }}</p>
<form action="{{ url_for('logout') }}" method="GET" style="display:inline">
<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 %}