feed83f517
* Proposals forms now have a header panel * Adds panels to the speaker forms * Imports latest pinax accounts templates * speakers/base and proposals/base now derive from utility_page.html * Most login forms now derive from take flight themes * Missed email_confirm * More accounts bits * Restructures login form * Puts submit etc buttons inside fieldset borders
14 lines
507 B
HTML
14 lines
507 B
HTML
{% 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 %}
|