-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
42 lines (34 loc) · 1.15 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
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script src="jquery-1.4.2.js" type="text/javascript"></script>
<script src="client.js" type="text/javascript"></script>
</head>
<body>
<div id="app">
<div id="connect">
<form action="#">
<fieldset>
<p>
This is a chat room. Both the client-side and server-side are
written in javascript. The source code is
<a href="http://github.com/neerajdotname/node-chat-in-steps">here</a>.
</p>
<label for="nick">Name</label>
<input id="nickInput" class="text" type="text" name="nick" value=""></input>
<input id="connectButton" class="button" type="submit" name="" value="Join" ></input>
</fieldset>
</form>
</div>
</div>
<div id='loading'><p>loading</p></div>
<div id='log'></div>
<div id="toolbar">
<ul id="status">
<li class="date" id="currentTime">#</li>
<li><a id="usersLink" href="#">#</a></li>
</ul>
<input tabindex="1" type="text" id="entry"/>
</div>
</body>
</html>