15 lines
313 B
HTML

'''
This is the main page where the user can input their article.
'''
<!DOCTYPE html>
<html>
<head>
<title>Article Processor</title>
</head>
<body>
<form method="POST">
<textarea name="article" required></textarea>
<button type="submit">Process Article</button>
</form>
</body>
</html>