28 lines
706 B
HTML
28 lines
706 B
HTML
{% extends "account/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Sign Out" %} - {{ site.name }}{% endblock %}
|
|
{% block header-title %}
|
|
{% blocktrans with site.name as site_name %}
|
|
Sign out {{ site_name }}
|
|
{% endblocktrans %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<section>
|
|
<p>
|
|
{% blocktrans %}
|
|
Are you sure you want to sign out?
|
|
{% endblocktrans %}
|
|
</p>
|
|
<form action="{% url "account_logout" %}" method="post">
|
|
{% csrf_token %}
|
|
{% if redirect_field_value %}
|
|
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}">
|
|
{% endif %}
|
|
<input type="submit" value="{% trans "Sign Out" %}">
|
|
</form>
|
|
</section>
|
|
|
|
{% endblock %}
|