-
Notifications
You must be signed in to change notification settings - Fork 248
/
index.html
44 lines (42 loc) · 1.32 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
43
44
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script src="jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="client.js" type="text/javascript"></script>
<title>node chat</title>
</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="https://github.com/mohlendo/node_chat">here</a>.
</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="users">
<ul>
<li>keule</li>
<li>eule</li>
<li>ksdeule</li>
</ul>
</div>
<div id="toolbar">
<ul id="status">
<li class="date" id="currentTime">12:59</li>
<li><a id="usersLink" href="#">5 users</a></li>
</ul>
<input tabindex="1" type="text" id="entry"/>
</div>
</body>
</html>