github.com/blystad/deis@v0.11.0/controller/web/templates/account/logout.html (about)

     1  {% extends "account/base.html" %}
     2  
     3  {% load url from future %}
     4  {% load i18n %}
     5  
     6  {% block head_title %}{% trans "Sign Out" %}{% endblock %}
     7  
     8  {% block content %}
     9  <h1>{% trans "Sign Out" %}</h1>
    10  
    11  <p>{% trans 'Are you sure you want to sign out?' %}</p>
    12  
    13  <form method="post" action="{% url 'account_logout' %}">
    14    {% csrf_token %}
    15    {% if redirect_field_value %}
    16    <input type="hidden" name="{{redirect_field_name}}" value="{{redirect_field_value}}"/>
    17    {% endif %}
    18    <button type="submit">{% trans 'Sign Out' %}</button>
    19  </form>
    20  
    21  
    22  {% endblock %}