logout.html 518 B

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