obus/python/static/controller.html

34 lines
768 B
HTML
Raw Normal View History

2022-02-10 18:46:25 +01:00
<!DOCTYPE html>
2022-01-19 20:44:54 +01:00
<html lang="en">
2022-02-10 18:46:25 +01:00
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="/static/css/controller.css" />
<title>OBUS controller</title>
</head>
<body>
<!-- State -->
<div class="state">
<p>Game state: <span id="gamestate"></span></p>
<button onclick="onStartButtonClick()">START</button>
<button onclick="onRestartButtonClick()">RESTART</button>
</div>
2022-01-19 20:44:54 +01:00
2022-02-10 18:46:25 +01:00
<!-- Timer -->
<div class="center">
<canvas id="display" width="1000" height="500">
Timer should be here
</canvas>
</div>
2022-02-10 18:46:25 +01:00
<!-- Modules -->
<div id="modules" class="center"></div>
2022-02-10 18:46:25 +01:00
<!-- Scripts -->
<script src="/static/js/controller.js"></script>
<script type="text/javascript" src="/static/js/segment-display.js"></script>
</body>
2022-01-19 20:44:54 +01:00
</html>