Update 2025-04-17_20:32:52

This commit is contained in:
root
2025-04-17 20:32:52 +02:00
commit a1a4090fa1
7 changed files with 243 additions and 0 deletions

24
static/index.html Normal file
View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TriSolve</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<h1>🧠 TriSolve</h1>
<div id="game">
<p id="task"></p>
<form onsubmit="submitAnswer(); return false;">
<input id="answer" type="number" placeholder="Your answer" autocomplete="off" />
<button type="submit">Submit</button>
</form>
<p id="score"></p>
<p id="feedback"></p>
</div>
<script src="/static/app.js"></script>
</body>
</html>