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.
lesechos/theme-authentic2/templates/registration/delete_account.html

17 lines
404 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block title %}
{% trans "Delete account" %}
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
<p>{% trans "Delete my account and all my personal datas ?" %}</p>
<input type="submit" name="submit" value="{% trans "Yes" %}"/>
<input type="submit" name="cancel" value="{% trans "No" %}"/>
</form>
{% endblock %}