-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (36 loc) · 1.43 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
45
<!DOCTYPE html>
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<!-- Custom css for this page. -->
<link rel='stylesheet' href='/css/chatStyles.css'>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<!-- AngularJS source. -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.1/angular.min.js"></script>
<!-- The javascript library and custom functions which handle the server-client interaction. -->
<script src="/socket.io/socket.io.js"></script>
<script src='/scripts/functions.js'></script>
</head>
<body>
<div class='container'>
<h1>Chat App</h1>
<div class='chatBody'>
<div class='chatUsers'>
<ul></ul>
</div>
<div class='chatWindow'>
<ul></ul>
</div>
</div>
<input id="messageText" autocomplete="off">
</div>
</body>
<!-- Load the clientChat.js after the body so it can alter some events of DOM elements -->
<script src='/scripts/clientChat.js'></script>
</html>