-
Notifications
You must be signed in to change notification settings - Fork 3
/
admin.html
49 lines (44 loc) · 985 Bytes
/
admin.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
43
44
45
46
47
48
49
<!doctype html>
<html>
<head>
<title>Administration</title>
<link rel="stylesheet" type="text/css" href="css/admin.css">
</head>
<body>
<div id="status">
<h1>Server status</h1>
<p id="log"></p>
<div>
<button id="start-stop">?</button>
<button id="reset">Reset</button>
</div>
</div>
<div id="spaceship">
<h1>Spaceship status</h1>
<table>
<tr>
<th>oxygen</th>
<th>delta oxygen</th>
<th>current speed</th>
<th>time left</th>
<th>status</th>
</tr>
<tr>
<td id='oxygen'>?</td>
<td id='delta_oxygen'>?</td>
<td id='current_speed'>?</td>
<td id='time_left'>?</td>
<td id="game_status">?</td>
</tr>
</table>
</div>
<div id="rooms">
<h1>Rooms status</h1>
</div>
<div id="events">
<h1>Events</h1>
</div>
<script type="text/javascript" src="js/ServerCommunication.js"></script>
<script type="text/javascript" src="js/admin.js"></script>
</body>
</html>