-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (51 loc) · 2.13 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
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="description" content="" />
<meta name="author" content="" />
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<![endif]-->
<title>Chat App</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment.min.js"></script>
<script src="https://cdn.firebase.com/js/client/2.2.6/firebase.js"></script>
</head>
<body style="font-family:Verdana">
<div class="container">
<div class="row " style="padding-top:40px;">
<h3 class="text-center" >FIRE GROUP CHAT</h3>
<br /><br />
<button type="button" class="center-block btn-lg btn btn-primary fblogin hide" >Log in with Facebook</button>
<div class="col-md-8 hide chat_container">
<div class="panel panel-primary">
<div class="panel-heading">CHAT</div>
<div class="panel-body" >
<ul class="media-list chat_list" id="scrltop" style="height: 500px; overflow: scroll;"></ul>
</div>
<div class="panel-footer">
<div class="input-group">
<input type="text" class="form-control " id="inputMsg" placeholder="Enter Message" />
<span class="input-group-btn">
<button class="btn btn-success btn_send" type="button">SEND</button>
</span>
</div>
</div>
</div>
</div>
<div class="col-md-4 user_container hide">
<div class="panel panel-primary">
<div class="panel-heading">ONLINE USERS</div>
<div class="panel-body">
<ul class="media-list user_list"></ul>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="firegroupchat.js"></script>
</html>