-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage.html
62 lines (61 loc) · 1.93 KB
/
manage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/static/style/manage.css">
<link rel="stylesheet" href="/static/style/misc.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300&subset=cyrillic" rel="stylesheet">
<link rel="shortcut icon" href="/static/images/favicon.ico" />
<title>Manage Game</title>
</head>
<body>
<script src="/socket.io/socket.io.js"></script>
<div id="monitoring" class="invisible">
<div>
<p>
Статистика игры:
</p>
</div>
<div>
<button id="belated_join" type="button">Получить ссылку</button>
<div class="join-links-container">
</div>
</div>
</div>
<div id="preparing" class="invisible">
<div>
<input type="button" id="start" value="Запустить сессию" />
</div>
<div>
<p>
Ссылка для подключения:
</p>
<input type="text" id="link" />
</div>
<div>
<ul id="player_list"></ul>
</div>
</div>
<div id="creating" class="invisible">
<div>
<p>
Название сессии:
</p>
<input type="text" id="name" />
</div>
<div>
<p>
Ограничение по времени (минуты):
</p>
<input type="number" id="time" min="5" max="180" value="30" />
</div>
<div>
<p></p>
<input type="button" id="create" value="Создать сессию" />
</div>
</div>
<script src="static/manage.js"></script>
</body>
</html>