Files @ 1759a07630a8
Branch filter:

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

Nick Seidenman (N6)
A few mods to be able to use the runserver site for debugging. We'll back these out once the real
(via apache) site is up and running.
{% 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 %}