forked from hackyourfuturecanada/Chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·34 lines (26 loc) · 1015 Bytes
/
index.html
File metadata and controls
executable file
·34 lines (26 loc) · 1015 Bytes
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
<!DOCTYPE HTML>
<head>
<title>My First Chatbot</title>
<link rel="stylesheet" type="text/css" href="./styles/chatbot_style.css">
</head>
<body>
<div id="demo">
<h1> My first chatbot! </h1>
<h3> Talk to your bot!</h3>
<div id="user">
<input id="input" type="text" placeholder="Say something" />
<button id="submit">Submit</button>
<input type="radio" name="filterType" class="filterType" id="random" value="Random" checked> Random
<input type="radio" name="filterType" class="filterType" id="shortest" value="Shortest Answer"> Shortest Answer
<input type="radio" name="filterType" class="filterType" id="longest" value="Longest Answer"> Longest Answer
</div>
<br />
<h3> Chat history </h3>
<div id="chatBot">
<textarea id="output" name="ChatHistory" rows="15"></textarea>
<br />
</div>
</div>
<script type="text/javascript" src="scripts/app.js" defer></script>
</body>
</html>