forked from hem-shrestha/node-chat
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (34 loc) · 1.14 KB
/
index.html
File metadata and controls
40 lines (34 loc) · 1.14 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
40
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script src="jquery-1.2.6.min.js" type="text/javascript"></script>
<script src="client.js" type="text/javascript"></script>
<title>Chat Test</title>
</head>
<body>
<div id="app">
<div id="connect">
<form action="#">
<fieldset>
<p>
This is a 01 chat room. You must enter your nick name here development and production.
</p>
<label for="nick">Name</label>
<input id="nickInput" class="text"type="text" name="nick" value=""/>
<input id="connectButton" class="button" type="submit" name="" value="Join"/>
</fieldset>
</form>
</div>
<div id="loading"><p>loading</p></div>
<div id="log">
</div>
<div id="toolbar">
<ul id="status">
<li><a id="usersLink" href="#">5 users</a></li>
<li>uptime: <span id="uptime">?</span></li>
<li>memory: <span id="rss">?</span>mb RSS</li>
</ul>
<input tabindex="1" type="text" id="entry"/>
</div>
</body>
</html>