File size: 760 Bytes
008ebb9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Subject Generation</title>
    <link rel="stylesheet" href="style.css"> </head>
<body>
    <header>
        <h1>Subject Generation</h1>
    </header>
    <main>
        <section class="question-answer">
            <h2>Question:</h2>
            <p>{{ questionInput }}</p>
            <h2>Answer:</h2>
            <p class="answer">{{ result }}</p>
        </section>
        <section class="actions">
            <form action="/question_input/" method="get">
                <button type="submit">Check Another Input</button>
            </form>
            <form action="/" method="get">
                <button type="submit">Home</button>
            </form>
        </section>
    </main>
</body>
</html>