Private
Public Access
1
0
Files
rowsandall/rowers/templates/userprofile_delete.html
Sander Roosendaal 401fc7c82a gdpr-optin
2018-10-10 13:59:53 +02:00

25 lines
611 B
HTML

{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block title %}Delete your account{% endblock %}
{% block main %}
<h1>Delete your account</h1>
<hr>
<p><b>Warning: This will remove your account and all your data.
You will not be able to recover from this action. We cannot restore
your account</b></p>
<form method="POST" class="padding">{% csrf_token %}
{{ user_form.as_p}}
{% csrf_token %}
<button class="btn btn-primary" type="submit" name="action">Confirm</button>
</form>
{% endblock %}
{% block sidebar %}
{% include 'menu_profile.html' %}
{% endblock %}