Update 2025-04-13_16:26:56

This commit is contained in:
root
2025-04-13 16:26:57 +02:00
commit e1f088f10f
2311 changed files with 422629 additions and 0 deletions

23
static/index.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>🔢 FlipNum</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<h1>🔢 Guess the Changed Number!</h1>
<div id="stats">
<div id="timer">⏱️ 00:00</div>
<div id="score">✅ 0 | ❌ 0</div>
</div>
<div id="grid"></div>
<div id="feedback"></div>
</div>
<script src="/static/app.js"></script>
<script src="/static/stats.js"></script>
</body>
</html>