-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (36 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="Style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
</head>
<script id="messageTemplate" type="text/custom-template">
<div data-id="0" data-serverid="0" >
<div class="msg-body"></div>
<span class="fa fa-clock-o"></span>
<div class="msg-by"></div>
</div>
</script>
<div id="divStartChat">
<input type="text" id="userInput" placeholder="Enter username">
</div>
<body class="container">
<div class="row col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2">
<div class="col-sm-12" id="panelHeader">
<span id="userName"></span>
<span id="serverStatus" class="fa fa-wifi server-off"></span>
<span id="exitChat">exit</span>
</div>
<div class="col-sm-12" id="msgPanel"></div>
<div class="col-sm-12">
<input type="text" id="msgBox">
<input type="button" value="send" id="btnSendMsg"/>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="jsstore.min.js"></script>
<script src="Script.js"></script>
</body>
</html>