aboutsummaryrefslogtreecommitdiffstats
path: root/src/expense/templates/auth/delete.html
blob: 6a2822e7338cbe44bda99f16a8e7f210cc1926b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% from 'macros.html' import label_field %}
{% extends 'base.html' %}

{% block header %}
<h2>{% block title %}Delete the Account. This is non reversable{% endblock %}</h2>
{% endblock %}

{% block content %}
<form method="post">
  {{ form.hidden_tag() }}
  {{ form.submit }}
</form>
{% endblock %}