-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 880 Bytes
/
index.html
File metadata and controls
33 lines (31 loc) · 880 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script src="http://0.0.0.0:3030/socket.io/socket.io.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="/javascripts/libs/bacon.js"></script>
<script src="/javascripts/libs/underscore.js"></script>
<script src="/javascripts/application.js"></script>
<style>
.chat {
height: 400px;
width: 500px;
overflow: auto;
border: 1px solid #eee;
}
.controls, .chat {
margin: 10px;
}
</style>
</head>
<body>
<div class="chat">
<div class="typers">
</div>
</div>
<div class="controls">
<input placeholder="Name" type="text" value="guest" class="name" />
<input placeholder="Message" type="text" size="60" autofocus class="message" />
</div>
</body>
</html>