25 lines
535 B
HTML
25 lines
535 B
HTML
<!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>
|
|
|