refactor to make way for dockerization

This commit is contained in:
2022-11-19 16:44:50 -05:00
parent 400c870056
commit ab63eeff96
25 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
{% extends 'base.html' %}
{% block content %}
<span><h1>{% block title %} Create New Task {% endblock %}</h1></span>
<form method="post">
{{ form.csrf_token }}
<p>
{{ form.title.label }}
{{ form.title(size=20) }}
</p>
<p>
{{ form.description.label }}
</p>
{{ form.description(rows=5, cols=25) }}
<p>
<button class="btn btn-primary" type="submit">Add Task</button>
</p>
</form>
{% endblock %}