-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
30 lines (24 loc) · 835 Bytes
/
index.php
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ChatBot</title>
</head>
<body>
<script>
var botmanWidget = {
frameEndpoint: '/chat.html',
introMessage: 'Hello I am a chatbot',
chatServer : 'chat.php',
title: 'My Chatbot',
mainColor: '#456765',
bubbleBackground: '#ff76f4',
aboutText: '',
bubbleAvatarUrl: '',
};
</script>
<script src='https://cdn.jsdelivr.net/npm/botman-web-widget@0/build/js/widget.js'></script>
<h1 style="text-align: center; vertical-align:middle; margin-top:10%;">SIMPLE CHATBOT by @ghost</h1>
</body>
</html>