-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (34 loc) · 1.38 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
<!doctype html>
<html lang="en">
<head>
<title>Chatbot test 1</title>
<link rel="stylesheet" href="css/normalize.css">
<!-- corporate fonts -->
<link rel='stylesheet prefetch' href='fonts/stylesheet.css'>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.3/jquery.mCustomScrollbar.min.css'>
<link rel="stylesheet" href="css/style.css">
<script src="https://cdn.socket.io/socket.io-1.2.0.js"></script>
</head>
<body>
<div class="chat">
<div class="chat-title">
<h1>BotBank! demo</h1>
<figure class="avatar">
<!-- this url must be so far consistent with the one displayed in index.js (addBotLoader function)
It should be injected by JQuery -->
<img src="images/avatar-bot-75.png" /></figure>
</div>
<div class="messages">
<div class="messages-content"></div>
</div>
<div class="message-box">
<textarea type="text" class="message-input" placeholder="Type message..."></textarea>
<button type="submit" class="message-submit">Send</button>
</div>
</div>
<div class="bg"></div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.3/jquery.mCustomScrollbar.concat.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>