Add matrix background and prepare filters
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user