-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.html
More file actions
28 lines (27 loc) · 1002 Bytes
/
client.html
File metadata and controls
28 lines (27 loc) · 1002 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
<!doctype html>
<html>
<head>
<script src="/static/jquery/jquery.min.js"></script>
<link rel="stylesheet" href="/static/client.css">
<script src="https://cdn.socket.io/socket.io-1.4.5.js"></script>
<script src="/static/client.js"></script>
</head>
<body onload="init()">
<div class="sidebar">
<h2>Chat</h2>
<div class="textchat">
<textarea class="chat" readonly placeholder="There are no messages yet"></textarea>
<div class="chat-bottom">
<textarea class="message" placeholder="Write a message..." onkeydown="messageKey(event)"></textarea>
<button class="send" onclick="sendTextMessage()">Send</button>
</div>
</div>
</div>
<div class="middlebox">
<h2>Users</h2>
<div class="clients"></div>
</div>
<div class="rightbox">
</div>
</body>
</html>