ChatDev/WareHouse/Article_pic_DefaultOrganization_20231023003059/index.html
2023-10-23 10:54:37 +08:00

15 lines
No EOL
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>