Files @ 48c28651b85c
Branch filter:

Location: symposion_app/pinaxcon/templates/account/delete.html

Sachi King
Remove boxes

Boxes takes content directly from the DB and drops it into the django
templates. This is rather ugly and goes against keeping as much as we
can in static locations. As such, this is being dropped.
{% extends "account/base.html" %}

{% load i18n %}

{% block body_class %}account account-delete{% endblock %}

{% block head_title %}{% trans "Delete Account" %}{% endblock %}
{% block page_title %}{% trans "Delete Account" %}{% endblock %}
{% block btn-delete %}btn__active{% endblock %}

{% block account_body %}

    <p>{% blocktrans %}If you go ahead and delete your account, your information will be <b>expunged within {{ ACCOUNT_DELETION_EXPUNGE_HOURS }} hours</b>.{% endblocktrans %}</p>

    <form method="post" action="{% url "account_delete" %}" autocapitalize="off">
        {% csrf_token %}
        <button type="submit" class="btn btn-danger">{% trans "Delete My Account" %}</button>
    </form>

{% endblock %}