-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
37 lines (35 loc) · 1.02 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<title>EventSource HQ Chat Example</title>
<link rel="stylesheet" href="/css/style.css" />
</head>
<body>
<h1 class="header">ESHQ Chat</h1>
<div class="chat box">
<div class="container box">
<div id="messages" class="messages box">
</div>
</div>
<div id="roster" class="roster">
</div>
<div class="chat-bar">
<form id="message">
<input class="box" placeholder="Type to chat" name="message"/>
</form>
</div>
</div>
<div id="overlay" class="overlay"></div>
<div class="login-box">
<form id="login">
<h3>Choose a nick</h3>
<input name="nick"/>
<button type="submit">Start chatting</button>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script src="/js/json2.js"></script>
<script src="https://app.eventsourcehq.com/es.js"></script>
<script src="/js/chat.js"></script>
</body>
</html>