26 lines
615 B
HTML
26 lines
615 B
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Deactivate your account{% endblock %}
|
|
|
|
{% block main %}
|
|
<h2>Deactivate your account</h2>
|
|
<hr>
|
|
<p>Account deactivation is reversible. After you logout, you will not be
|
|
able to access your data any more, but the site admin can restore your
|
|
account.</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 %}
|