-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (34 loc) · 821 Bytes
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>Rampart</title>
<script language="javascript" src="jquery.js"></script>
<script language="javascript" src="rampart.js"></script>
</head>
<body onload="javascript: init(false)">
<table>
<tr>
<td>
<canvas id="a" width="640" height="480"></canvas>
</td>
<td valign="top">
<b>Room List</b>
<br />
<select size="20" style="width: 200px" id="rooms">
</select>
<br />
<input type="button" value="Refresh Room List" id="refresh" />
<br />
<form action="index.html" method="GET">
Join game: <input name="game" />
<input type="submit" value="Go!" />
</form>
</td>
</tr>
</table>
<input type="hidden" id="difficulty" value="1" />
<div id="state" style="font-weight: bold"></div>
<div id="output">
</div>
</body>
</html>