Spaces:
Sleeping
Sleeping
<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> | |