wsdv / index.html
Rudrameher45's picture
Create index.html
e5f6776 verified
raw
history blame contribute delete
471 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Text Summarizer</title>
</head>
<body>
<h1>Article Summarizer</h1>
<form method="POST" action="/summarize">
<textarea name="article" rows="10" cols="50" placeholder="Enter your article here..."></textarea><br>
<input type="submit" value="Summarize">
</form>
{% if summary %}
<h2>Summary:</h2>
<p>{{ summary }}</p>
{% endif %}
</body>
</html>