-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (49 loc) · 1.84 KB
/
index.html
File metadata and controls
57 lines (49 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SkyRoulette Discord</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<header class="app-header">
<h1>🎰 SkyRoulette</h1>
<p class="subtitle">Tirage au sort des timeouts</p>
</header>
<div id="happy-hour-banner" class="happy-hour-banner hidden">
🍻 HAPPY HOUR ! Spins toutes les 5 min & Timeouts réduits
<span class="happy-hour-hours"></span> 🍻
</div>
<main class="roulette-container">
<div class="wheel-area">
<div id="wheel" class="roulette-wheel" aria-hidden="true">
<div class="wheel-center" aria-hidden="true">🎯</div>
<div class="wheel-pointer" aria-hidden="true"></div>
</div>
<div class="controls">
<button id="spin-btn">Lancer</button>
<div id="result" class="result" aria-live="polite"></div>
</div>
</div>
<section class="history-section">
<div class="history-header">
<h2>Historique des timeouts</h2>
<div class="history-actions">
<div id="clear-history" class=""></div>
</div>
</div>
<ul id="history" class="history-list" aria-live="polite"></ul>
</section>
<section class="leaderboard-section">
<div class="leaderboard-header" style="text-align: center;">
<h2>👑 Leaderboard</h2>
</div>
<div id="leaderboard" class="leaderboard-box">
<div class="leaderboard-empty">Chargement...</div>
</div>
</section>
</main>
<script src="/static/roulette.js"></script>
</body>
</html>