Spaces:
Sleeping
Sleeping
answer_generation.html added
Browse files
app/templates/answer_generation.html
CHANGED
@@ -1,27 +1,38 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
-
<title>
|
5 |
-
|
6 |
<body>
|
7 |
-
<
|
8 |
-
<h1
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
<
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
<form action="/question_input/" method="get">
|
19 |
-
<button type="submit">Check Another Input</button>
|
20 |
</form>
|
|
|
21 |
<form action="/" method="get">
|
22 |
-
<button type="submit">Home</button>
|
23 |
</form>
|
24 |
-
</
|
25 |
-
</
|
26 |
</body>
|
27 |
-
</html>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
+
<title>Predict</title>
|
5 |
+
</head>
|
6 |
<body>
|
7 |
+
<div>
|
8 |
+
<h1 style="background-color:LightGray;">
|
9 |
+
<center>Subject Generation </center>
|
10 |
+
</h1>
|
11 |
+
</div>
|
12 |
+
<div>
|
13 |
+
<fieldset>
|
14 |
+
<p>
|
15 |
+
<center>
|
16 |
+
<span style="font-weight:bold;font-family:sans-serif">Question :</span>
|
17 |
+
<span style="font-weight:bold;color:black"> {{questionInput}}</span>
|
18 |
+
</center>
|
19 |
+
</p>
|
20 |
+
<br><br>
|
21 |
+
<h3>
|
22 |
+
<center>
|
23 |
+
<span style="font-weight:bold;font-family:sans-serif">Awnser:</span>
|
24 |
+
<span style="font-weight:bold;color:blue"> {{result}}</span>
|
25 |
+
</center>
|
26 |
+
</h3>
|
27 |
+
<br><br>
|
28 |
<form action="/question_input/" method="get">
|
29 |
+
<center><button type="submit">Check Another Input</button></center>
|
30 |
</form>
|
31 |
+
<br>
|
32 |
<form action="/" method="get">
|
33 |
+
<center><button type="submit">Home</button></center>
|
34 |
</form>
|
35 |
+
</fieldset>
|
36 |
+
</div>
|
37 |
</body>
|
38 |
+
</html>
|