management-llm/flask_testing/templates/index.html
Atin Pothiraj 75fcf820b5 Created app.py
added supporting templates too.
2023-05-30 22:34:06 -04:00

15 lines
350 B
HTML

<!DOCTYPE html>
<head>
<title>Quickstart</title>
</head>
<body>
<h3>Name your task</h3>
<form action="/" method="post">
<input type="text" name="task_form" placeholder="Enter a task" required />
<input type="submit" value="Generate subtasks" />
</form>
{% if result %}
<div class="result">{{ result }}</div>
{% endif %}
</body>