forked from floatinghotpot/casino-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (40 loc) · 1017 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title>Jinhua Test</title>
<link rel="stylesheet" href="main.css"/>
<script src="/socket.io/socket.io.js"></script>
<script src="js/jquery-1.11.2.min.js"></script>
<script src="js/jquery.cookie.js"></script>
<script src="js/hotjs-i18n.js"></script>
<script src="js/en.lang.js"></script>
<script src="js/zh.lang.js"></script>
<script src="main.js"></script>
</head>
<body>
<div id='env'>
<span class='I18N' i18n='language'>Language</span>: <select id='lang'>
<option value='en'>English</option>
<option value='zh'>中文</option>
</select>
<h3 id="roomname"></h3>
<div id='roomdesc'></div>
<h3 id='sharedcards'></h3>
<h3 id='pot'></h3>
<h3 id='countdown'></h3>
<ul id="seats"></ul>
<h3 id='mycards'></h3>
</div>
<div id='logs'>
<ul id="messages" class="list"></ul>
</div>
<!--
<form action="">
<input id="m" autocomplete="off" />
<button id='send'>Send</button>
</form>
-->
<div id='cmds' class='inactive'></div>
</body>
</html>