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_request.html

25 lines
745 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block content %}
<div class="a2-container">
<form method="post">
{% csrf_token %}
<p>
{% blocktrans trimmed %}
Do you really want to delete your account?
{% endblocktrans %}
</p>
<p>
{% blocktrans trimmed %}
A validation message will be sent to {{ email }}. You will have to visit the
link in this email in order to complete the deletion process.
{% endblocktrans %}
</p>
<button class="submit-button" name="submit">{% trans "Send the code" %}</button>
<button class="cancel-button" name="cancel" formnovalidate>{% trans "Cancel" %}</button>
</form>
</div>
{% endblock %}