-
Notifications
You must be signed in to change notification settings - Fork 3
/
game.html
35 lines (33 loc) · 1.16 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
<html>
<head>
<title>Mafia</title>
<script type="text/javascript" src="mafia_r.js">
</script>
<link href="/styles/styles.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="splash">
<h1>Splash</h1>
<div id="done-button">Done</div>
</div>
<div id="upper" class="panel">
<table>
<tr id="username"><td class="type">Username:</td><td>Loading...</td></tr>
<tr id="status"><td class="type">Status:</td><td>Loading...</td></tr>
<tr id="type"><td class="type">Type:</td><td></td></tr>
<tr id="team"><td class="type">Team:</td><td>Loading...</td></tr>
<tr id="detection-result"><td class="type">Detection Result:</td><td>[unavailable]</td></tr>
<tr id="timer"><td class="type">Time Left: </td><td>-</td></tr>
</table>
</div>
<div id="voting-screen" class="panel">
<form id="voting-form" name="voting_form">
<!-- Keep one as sample, this is what they should look like when dynamically generated
<label><input type="radio" name="players" id="player1" value="player1">Player 1<span id="player1-voters"></label>
-->
</form>
</div>
<script src="game.js">
</script>
</body>
</html>