-
Notifications
You must be signed in to change notification settings - Fork 123
/
index.html
65 lines (49 loc) · 2.12 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
64
65
<!DOCTYPE html>
<html>
<head>
<title>Chatbot</title>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:500&display=swap" rel="stylesheet">
<!--Import materialize.css-->
<link rel="stylesheet" type="text/css" href="static/css/materialize.min.css">
<!--Main css-->
<link rel="stylesheet" type="text/css" href="static/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha256-eZrrJcwDc/3uDhsdt61sL2oOBY362qM3lon1gyExkL0=" crossorigin="anonymous" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div class="container">
<div class="widget">
<div class="chat_header">
<!--Add the name of the bot here -->
<span class="chat_header_title">Restobot</span>
<span id="close">
<i class="fa fa-times-circle" aria-hidden="true"></i>
</span>
</div>
<!--Chatbot contents goes here -->
<div class="chats" id="chats">
<div class="clearfix"></div>
</div>
<!--user typing indicator -->
<div class="keypad">
<textarea id="userInput" placeholder="Type a message..." class="usrInput"></textarea>
<div id="sendButton"><i class="fa fa-paper-plane" aria-hidden="true"></i></div>
</div>
</div>
<!--bot widget -->
<div class="profile_div" id="profile_div">
<img class="imgProfile" src="static/img/botAvatar.png" />
</div>
</div>
<!--JavaScript at end of body for optimized loading-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="static/js/materialize.min.js"></script>
<!--Main Script -->
<script type="text/javascript" src="static/js/script.js"></script>
</body>
</html>