2m2d/templates/tasks/delete.html

9 lines
291 B
HTML

{% extends "base.html" %}
{% block content %}
<form action="{{uri}}" method="POST">
Are you sure you want to delete this task?
<br>
<a href="/"><button type="button">Cancel</button></a><input style="background-color: #bf616a" type="submit" value="Delete">
</form>
{% endblock %}