symposion_app/pinaxcon/templates/account/delete.html
Ben Sturmfels 71805cc66e
Add additional account app templates
This works around use block "body" when we need block "content".
2023-04-20 15:07:37 +10:00

19 lines
650 B
HTML

{% extends "account/base.html" %}
{% load i18n %}
{% block body_class %}account account-delete{% endblock %}
{% block head_title %}{% trans "Delete Account" %}{% endblock %}
{% block content %}
<h1>{% trans "Delete Account" %}</h1>
<p>{% blocktrans %}If you go ahead and delete your account, your information will be <b>expunged within {{ ACCOUNT_DELETION_EXPUNGE_HOURS }} hours</b>.{% endblocktrans %}</p>
<form method="post" action="{% url "account_delete" %}" autocapitalize="off">
{% csrf_token %}
<button type="submit" class="btn btn-danger">{% trans "Delete My Account" %}</button>
</form>
{% endblock %}