Files @ 48c28651b85c
Branch filter:

Location: symposion_app/pinaxcon/templates/account/logout.html - annotation

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 "utility_page.html" %}

{% load i18n %}

{% block head_title %}{% trans "Log out" %}{% endblock %}
{% block page_title %}{% trans "Log out" %}{% endblock %}

{% block utility_body %}
            <form method="POST" action="{% url "account_logout" %}">
                    {% csrf_token %}
                    <p>{% trans "Are you sure you want to log out?" %}</p>
                    <button type="submit" class="btn btn-primary">{% trans "Log out" %}</button>
            </form>
{% endblock %}