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_validation....

19 lines
650 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block content %}
<div class="a2-container">
<form method="post">
{% csrf_token %}
<p>
{% blocktrans with full_name=user.get_full_name %}
You are about to delete the account of <strong>{{ full_name }}</strong>.
This will remove all related personal data and you won't be able to log in with this account anymore.
{% endblocktrans %}
</p>
<button class="delete-button" name="delete">{% trans "Confirm deletion" %}</button>
<button class="cancel-button" name="cancel" formnovalidate>{% trans "Cancel" %}</button>
</form>
</div>
{% endblock %}