{% extends "base.html" %} {% load i18n %} {% comment %} layerindex-web - delete account confirmation template Copyright (C) 2018 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}

Delete account

Are you sure you want to delete your account under the name "{{ user.username }}"? This will remove all associated records and cannot be undone!

To confirm, please enter your password below and then click on Delete account.

{% csrf_token %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% for field in form.visible_fields %} {% if field.errors %}
{{ field.errors }} {% else %}
{% endif %}
{{ field.label_tag }}
{{ field }}
{% endfor %} Cancel {% endautoescape %} {% endblock %}