style before n8n

This commit is contained in:
karim hassan
2025-08-24 16:28:35 +00:00
parent 72b5d23ce8
commit 92e6afff00
5 changed files with 312 additions and 24 deletions

View File

@@ -1,10 +1,14 @@
<!doctype html>
<html lang="fr">
<head>
<title>Super Sunday — Admin</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Super Sunday — Admin</title>
<link rel="stylesheet" href="/assets/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/style.css?v=4" />
</head>
<body>
<header>
@@ -12,13 +16,19 @@
<nav>
<a href="/">Accueil</a>
<a href="/events">Événements</a>
<a href="/admin">Admin</a>
<a href="/admin" class="active">Admin</a>
</nav>
</header>
<main class="container">
<section class="card accent" style="padding:22px; margin:8px 0 18px;">
<div class="kicker">Organisation</div>
<h2 class="hero-title">Pilote tes tournois</h2>
<p class="muted">Création rapide, génération Americano, scoring en deux clics.</p>
</section>
<section id="loginSection" class="card">
<h2>Connexion</h2>
<h2 class="section-title">Connexion</h2>
<input id="email" placeholder="Email" />
<input id="password" type="password" placeholder="Mot de passe" />
<button id="loginBtn" class="btn">Se connecter</button>
@@ -26,9 +36,10 @@
</section>
<section id="adminSection" style="display:none;">
<h2 class="section-title">Actions rapides</h2>
<div class="grid">
<div class="card">
<h3>Nouveau tournoi</h3>
<h3>Créer un tournoi</h3>
<input id="t_name" placeholder="Nom" />
<input id="t_loc" placeholder="Lieu" />
<input id="t_sd" type="date" />
@@ -54,14 +65,13 @@
</div>
</div>
<h2 class="mt">Tournaments</h2>
<h2 class="section-title">Tournaments</h2>
<pre id="adminTournaments"></pre>
<h2>Matches</h2>
<h2 class="section-title">Matches</h2>
<pre id="adminMatches"></pre>
</section>
</main>
<!-- Bubbles -->
<div class="bg-bubble b1"></div>
<div class="bg-bubble b2"></div>
<div class="bg-bubble b3"></div>