mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-14 21:46:35 +03:00
20 lines
553 B
HTML
20 lines
553 B
HTML
|
{% extends "account/base.html" %}
|
||
|
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block head_title %}{% translate "Sign Out" %}{% endblock %}
|
||
|
|
||
|
{% block inner %}
|
||
|
<h1>{% translate "Sign Out" %}</h1>
|
||
|
|
||
|
<p>{% translate 'Are you sure you want to sign out?' %}</p>
|
||
|
|
||
|
<form method="post" action="{% url 'account_logout' %}">
|
||
|
{% csrf_token %}
|
||
|
{% if redirect_field_value %}
|
||
|
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}"/>
|
||
|
{% endif %}
|
||
|
<button class="btn btn-danger" type="submit">{% translate 'Sign Out' %}</button>
|
||
|
</form>
|
||
|
{% endblock %}
|