Spaces:
Sleeping
Sleeping
Create question_input.html
Browse files
app/templates/question_input.html
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<title>Index</title>
|
5 |
+
</head>
|
6 |
+
<body>
|
7 |
+
<div>
|
8 |
+
<h1 style="background-color:LightGray;">
|
9 |
+
<center>AI ML Question Awnsering Chatbot </center>
|
10 |
+
</h1>
|
11 |
+
</div>
|
12 |
+
<div>
|
13 |
+
<fieldset>
|
14 |
+
<ul>
|
15 |
+
<!li>
|
16 |
+
<br>
|
17 |
+
<form action="/question_input/" enctype="multipart/form-data" method="post">
|
18 |
+
<span style="font-weight:bold;font-family:sans-serif">Enter your Question:</span> <br><br>
|
19 |
+
<textarea name="questionInput" rows="2" cols="150"></textarea>
|
20 |
+
<br><br><br><br>
|
21 |
+
<button type="submit">Get Awnser</button>
|
22 |
+
</form>
|
23 |
+
<!/li>
|
24 |
+
<br><br>
|
25 |
+
<form action="/" method="get">
|
26 |
+
<button type="submit">Home</button>
|
27 |
+
</form>
|
28 |
+
</ul>
|
29 |
+
</fieldset>
|
30 |
+
</div>
|
31 |
+
</body>
|
32 |
+
</html>
|