obus/python/static/controller.html

22 lines
591 B
HTML
Raw Normal View History

2022-01-19 19:44:54 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>OBUS controller</title>
<link rel="stylesheet" href="/static/7sgd.css">
2022-01-19 19:44:54 +00:00
</head>
<body style="background: #222; color: #888">
<p>Timer: <div id="timeleft"></div></p>
<p>Game state: <div id="gamestate"></div></p>
2022-01-19 19:44:54 +00:00
<button onclick="startbutton()">START</button>
<button onclick="restartbutton()">RESTART</button>
<script src="static/controller.js"></script>
<canvas id="display" width="700">Timer should be here</canvas>
<script type="text/javascript" src="/static/segment-display.js"></script>
2022-01-19 19:44:54 +00:00
</body>
</html>