summaryrefslogtreecommitdiff
path: root/templates/task/delete.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/task/delete.html')
-rw-r--r--templates/task/delete.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/task/delete.html b/templates/task/delete.html
new file mode 100644
index 0000000..dffe900
--- /dev/null
+++ b/templates/task/delete.html
@@ -0,0 +1,12 @@
+{% extends 'base.html' %}
+{% block title %}
+ {{task.title}}
+{% endblock %}
+{% block content %}
+ Are you sure you want to delete the task. This action cannot be undone.<br />
+
+ <form action="" method="post">
+ Reason: <input type="text" name="reason">
+ <input value="Delete" type="submit">
+ </form>
+{% endblock %}