-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgame.html
42 lines (42 loc) · 1.11 KB
/
game.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
41
42
<!DOCTYPE html>
<html>
<head>
<title>The Resistance</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://autobahn.s3.amazonaws.com/js/autobahn.min.js"></script>
<script src="common_script.js"></script>
<script src="game.js"></script>
</head>
<body>
<div id="statusbar" class="light">
<div id="room">
<i>Room Owner:</i>
</div>
<div id="state" align=center>
<i>Mission Status:</i>
<table style="border-spacing: 30px 5px;"><tr>
<td class="mission">
<td class="mission">
<td class="mission">
<td class="mission">
<td class="mission">
</tr></table>
<div id="pregame">(Game not yet started)</div>
</div>
<div id="prompt" class="light" align=center>
<button id="setready" onclick="setReady()">I am ready to begin the game.</button>
</div>
</div>
<div style="position: relative;">
<div id="game">
<input id="chatinput" type="text">
<table id="messagelog">
</table>
</div>
<div id="players" class="light">
<ul />
</div>
</div>
</body>
</html>