Update 2025-04-13_16:49:18

This commit is contained in:
root
2025-04-13 16:49:20 +02:00
commit 06fb52f574
2398 changed files with 435653 additions and 0 deletions

27
static/index.html Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>WordCraze</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<main>
<h1>🧠 WordCraze</h1>
<section class="controls">
<button id="start">Spiel starten</button>
</section>
<section class="game">
<div id="word" class="word">_ _ _</div>
<input id="input" type="text" maxlength="1">
<div id="feedback" class="feedback"></div>
<div id="attempts" class="attempts">Versuche übrig: 8</div>
</section>
</main>
<script type="module" src="/static/app.js"></script>
</body>
</html>