-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
67 lines (67 loc) · 2.17 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="/favicon.png"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css"/>
<link rel="stylesheet" href="custom.css"/>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.2.15.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="aws-minecraft.js"></script>
<title>Minecraft Server</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="twelve columns">
<h1>Our Minecraft Server</h1>
<hr/>
</div>
</div>
<div class="row">
<div class="six columns">
<button id="start-button" class="button-primary u-full-width">Start</button>
<div id="server-size-group">
<label id="server-size-label" for="server-size">Server Size: </label>
<select id="server-size">
<option value="t2.micro">Micro (1-2 players)</option>
<option value="t2.small" selected>Small (2-4 players)</option>
<option value="t2.medium">Medium (4-8 players)</option>
</select>
</div>
</div>
<div class="six columns">
<table class="u-full-width">
<thead>
<tr>
<th>Name</th>
<th>Time Online</th>
</tr>
</thead>
<tbody>
<tr>
<td>briandotcom0</td>
<td>1:14</td>
</tr>
<tr>
<td>philipjag</td>
<td>0:13</td>
</tr>
</tbody>
</table>
</div>
</div>
<br/>
<div class="row">
<div class="twelve columns">
<pre id="log">[18:47:57] [Server thread/INFO]: Starting minecraft server 1.8.4
[18:47:57] [Server thread/INFO]: Loading properties
[18:47:58] [Server thread/INFO]: Generating keypair
[18:47:59] [Server thread/INFO]: Preparing level "world"
[18:48:39] [Server thread/INFO]: Done (40s)! For help, type "help" or "?"</pre>
<input id="command" class="u-full-width u-cf" type="text" placeholder="command"/>
</div>
</div>
</div>
</body>
</html>