gpt2_email_generation / app /templates /answer_generation.html
SurajSingh's picture
Create answer_generation.html
008ebb9 verified
raw
history blame
760 Bytes
<!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>