mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-05-16 13:34:01 +00:00
15 lines
313 B
HTML
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> |