-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (42 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./chatbot-ui.css">
<title>Custom UI ChatBot</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #e5e5e5;
display: flex;
justify-content: center;
height: 100vh;
width: 100%;
}
section {
max-width: 1100px;
margin: auto;
text-align: center;
padding: 0 1rem;
}
h1 {
font-size: 3rem;
margin-bottom: 2rem;
}
p {
font-size: 2rem;
}
</style>
</head>
<body>
<section>
</section>
<div id="chat-container"></div>
<script src="./chatbot-ui.js"></script>
<script>
createChatBot(host = 'http://localhost:5005/webhooks/rest/webhook', botLogo = "./imgs/bot-logo.png",
title = "S-Paper BOT", welcomeMessage = "Hey, i am Learny", inactiveMsg = "Server is down, Please contact the developer to activate it", theme = "purple")
</script>
</body>
</html>