-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (62 loc) · 2.77 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
55
56
57
58
59
60
61
62
63
<html>
<head>
<title>Chat Agent</title>
<link rel="stylesheet" href="resources/bootstrap.min.css" />
<link rel="stylesheet" href="resources/jquery-ui.css" />
<link rel="stylesheet" href="chat.css" />
<script type="text/javascript" src="resources/jquery-2.2.3.min.js"></script>
<script type="text/javascript" src="resources/jquery-ui.min.js"></script>
<script type="text/javascript" src="resources/jquery.simulate.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-xs-4">
<h2 class="text-center">Chat Box</h2>
<div class="panel panel-default">
<div id="chat-box" class="panel-body box-container">
<p id="bob_smith"><span><strong>Bob Smith:</strong></span>Hi</p>
</div>
</div>
</div>
<div class="col-xs-4">
<h2 class="text-center">Staging</h2>
<div class="panel panel-default">
<div id="staging-box" class="panel-body edit_box_containter">
<span class="send"><input type="button" value="Send" id="button_send" style="display: none" /></span>
</div>
</div>
</div>
<div class="col-xs-4">
<h2 class="text-center">Templates</h2>
<div class="panel panel-default border_less">
<div id="suggestions" class="panel-body box-container">
<span class="btn btn-default draggable-div template-draggable template-container p-0 span_width">
<span>Hello There </span> <br>
<div class="action">
<span class="edit"><input type="button" value="Edit"/></span>
<span class="cancel"><input type="button" value="Cancel"/></span>
</div> <span class='undo' style='display:none'>x</span>
</span>
<span class="btn btn-default draggable-div template-draggable template-container p-0 span_width">
<span>I can help you find your order </span> <br>
<div class="action">
<span class="edit"><input type="button" value="Edit"/></span>
<span class="cancel"><input type="button" value="Cancel"/></span>
</div>
</span>
<span class="btn btn-default draggable-div template-draggable template-container p-0 span_width">
<span>Have a great Day </span><br>
<div class="action">
<span class="edit"><input type="button" value="Edit"/></span>
<span class="cancel"><input type="button" value="Cancel"/></span>
</div>
</span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>