2022-01-19 20:44:54 +01:00
|
|
|
<!doctype html>
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>OBUS controller</title>
|
2022-01-25 19:16:38 +01:00
|
|
|
<link rel="stylesheet" href="/static/controller.css">
|
2022-01-19 20:44:54 +01:00
|
|
|
</head>
|
|
|
|
|
2022-01-25 19:16:38 +01:00
|
|
|
<body>
|
|
|
|
<p>Game state: <span id="gamestate"></span></p>
|
2022-01-24 20:41:55 +01:00
|
|
|
|
2022-01-19 20:44:54 +01:00
|
|
|
<button onclick="startbutton()">START</button>
|
|
|
|
<button onclick="restartbutton()">RESTART</button>
|
|
|
|
<script src="static/controller.js"></script>
|
2022-01-24 20:41:55 +01:00
|
|
|
|
2022-01-25 19:16:38 +01:00
|
|
|
<div class="center">
|
|
|
|
<canvas id="display" width="1000" height="500">Timer should be here</canvas>
|
|
|
|
</div>
|
2022-01-24 20:41:55 +01:00
|
|
|
<script type="text/javascript" src="/static/segment-display.js"></script>
|
2022-01-25 19:16:38 +01:00
|
|
|
<div id="modules" class="center"></div>
|
2022-01-19 20:44:54 +01:00
|
|
|
</body>
|
|
|
|
</html>
|