-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (71 loc) · 2.74 KB
/
Copy pathindex.html
File metadata and controls
74 lines (71 loc) · 2.74 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta content="telephone=no" name="format-detection">
<title>Chat cha cha chat..</title>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/main.css"/>
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/firebase.min.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div class="layout">
<!-- chat module -->
<div class="chat">
<div class="chat-box">
<div class="chat-people-list">
<div class="list-group">
<a href="#" class="list-group-item active">
<span class="default">还不知道我是谁</span>
<i class="glyphicon glyphicon-pencil editName hide"></i>
</a>
<a href="#" class="list-group-item"><i class="glyphicon glyphicon-user"></i>小逗逼</a>
<a href="#" class="list-group-item clearUser"><i class="glyphicon glyphicon-remove"></i>Clear local user</a>
<a href="#" class="list-group-item clearMessage"><i class="glyphicon glyphicon-remove"></i>Clear local message</a>
</div>
</div>
<div class="chat-box-wrap">
<ul class="chat-box-list">
</ul>
</div>
</div>
<div class="chat-input">
<div class="text-wrap">
<div class="text-inner">
<input id="text" class="text form-control" type="text"/>
</div>
</div>
<button id="submitText" class="btn btn-success">发送</button>
</div>
</div>
<!-- end chat module -->
</div>
<!-- prompt module -->
<div class="chat-floatwindow chat-floatwindow-input">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title"><span>...</span></h3>
</div>
<div class="panel-body">
<div>
<input class="text form-control" type="text">
</div>
<div class="btnWrap text-right">
<button class="btn btn-success confirm">确定</button>
<button class="btn btn-info cancel">取消</button>
</div>
</div>
</div>
</div>
<!-- end prompt module -->
<script>
chat.prototype.init();
</script>
</body>
</html>