mirror of
https://github.com/arthur-pbty/streaming-site.git
synced 2026-06-03 23:36:26 +02:00
25 lines
655 B
HTML
25 lines
655 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Administration</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Administration</h1>
|
|
<nav>
|
|
<a href="index.html">Accueil</a>
|
|
<button id="logout-button">Déconnexion</button>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<div id="users-list">
|
|
<!-- Liste des utilisateurs -->
|
|
</div>
|
|
</main>
|
|
<script src="auth.js"></script>
|
|
<script src="admin.js"></script>
|
|
</body>
|
|
</html> |