30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% block title %}{{ _("Sign Out") }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="row flex-center min-vh-50">
|
|
<div class="col-sm-10 col-md-8 col-lg-5 col-xl-4 col-xxl-3">
|
|
<div class="text-center mb-6 mx-auto">
|
|
<div class="mb-6">
|
|
<h1 class="fw-bold">{{ _("Sign Out") }}</h1>
|
|
<p class="text-body-tertiary">{{ _("Are you sure you want to sign out?") }}</p>
|
|
</div>
|
|
<div class="d-grid">
|
|
<form method="post" action="{% url 'account_logout' %}">
|
|
{% csrf_token %}
|
|
{{ redirect_field }}
|
|
<div class="d-grid gap-2 mt-3">
|
|
<button type="submit" class="btn btn-danger">
|
|
<span data-feather="log-out"></span> {{ _("Sign Out") }}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %} |