This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
cut-publik-theme/templates/authentic2/accounts_delete.html

23 lines
581 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block breadcrumb %}
{{ block.super }}
<a href="{% url "account_management" %}">{% trans "Your account" %}</a>
<a href="#">{% trans "Delete account" %}</a>
{% endblock %}
{% block content %}
<div class="a2-container">
<form method="post">
{% csrf_token %}
<p>{% trans "Delete my account and all my personal datas ?" %}</p>
{{ form.as_p }}
<input type="submit" name="submit" value="{% trans "Delete" %}"/>
<input type="submit" name="cancel" value="{% trans "Cancel" %}"/>
</form>
</div>
{% endblock %}