blob: 7f04e7c4ae898fc87a3ca28d257b1980364f1597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!doctype html>
<html>
<head>
<title>Hnefatafl interactor</title>
<meta charset="utf-8">
<script src="/socket.io/socket.io.js"></script>
<script src="/game.js"></script>
<script src="/board.js"></script>
<link rel="stylesheet" href="/game.css">
</head>
<body>
<canvas id="cvs" width="368" height="368"></canvas> <br>
<div id="status"></div>
<input type="button" id="aifirst" class="invisible" value="First move for AI">
<div id="serverlog"></div>
<br>
<div id="movelog_container">
<table id="movelog"><tbody id="movelog_tbody"></tbody></table>
</div>
</body>
</html>
|