Spaces:
Sleeping
Sleeping
Create answer_generation.html
Browse files
app/templates/answer_generation.html
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<title>Subject Generation</title>
|
5 |
+
<link rel="stylesheet" href="style.css"> </head>
|
6 |
+
<body>
|
7 |
+
<header>
|
8 |
+
<h1>Subject Generation</h1>
|
9 |
+
</header>
|
10 |
+
<main>
|
11 |
+
<section class="question-answer">
|
12 |
+
<h2>Question:</h2>
|
13 |
+
<p>{{ questionInput }}</p>
|
14 |
+
<h2>Answer:</h2>
|
15 |
+
<p class="answer">{{ result }}</p>
|
16 |
+
</section>
|
17 |
+
<section class="actions">
|
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 |
+
</section>
|
25 |
+
</main>
|
26 |
+
</body>
|
27 |
+
</html>
|