-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (34 loc) · 1.1 KB
/
index.html
File metadata and controls
39 lines (34 loc) · 1.1 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tinychat</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
</head>
<body>
<p id="status">---</p>
<form id="send">
<input type="text" id="uid">
<input type="text" id="msg" required>
<input type="submit" value="send">
</form>
<table id="log">
<thead>
<tr>
<th>uid</th>
<th>message</th>
<th>date</th>
<th>lat</th>
<th>lon</th>
</tr>
</thead>
<tbody></tbody>
</table>
<script src="//code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/dateformat.js"></script>
<script src="js/tinychat.js"></script>
</body>
</html>