54 lines
1.5 KiB
HTML
54 lines
1.5 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>
|
|
{% if session.alldebrid_active is defined %}
|
|
{% if session.alldebrid_active %}
|
|
<div class="second-header">
|
|
✅ Service fonctionnel
|
|
</div>
|
|
{% else %}
|
|
<div class="second-header">
|
|
⚠️ Service en panne, je répare !
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
</header>
|
|
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
|
|
</body>
|
|
</html>
|