begin edit task function

This commit is contained in:
2022-11-14 18:49:00 -05:00
parent 314511833b
commit 38b3cf9525
2 changed files with 30 additions and 0 deletions

22
templates/edittask.html Normal file
View File

@@ -0,0 +1,22 @@
{% extends 'base.html' %}
{% block content %}
<span><h1>{% block title %} Edit 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 class="btn btn-primary" type="submit">Edit Task</button>
</p>
</form>
{% endblock %}