now with the ability to post new tasks

This commit is contained in:
2022-11-13 14:21:23 -05:00
parent 7cb3aaf864
commit 3a129168c1
3 changed files with 36 additions and 2 deletions

22
templates/newtask.html Normal file
View File

@@ -0,0 +1,22 @@
{% extends 'base.html' %}
{% block content %}
<span><h1>{% block title %} Create New Task {% endblock %}</h1></span>
<form method="post">
<p>
<label for="title">Title:</label><br>
<input type="text" id="title" name="title"><br>
</p>
<p>
<label for="description">Description</label><br>
<textarea id="description"
name="description"
cols="25"
rows="5"> </textarea>
</p>
<p>
<button type="submit">Add Task</button>
</p>
</form>
{% endblock %}