28 lines
948 B
HTML
28 lines
948 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% block title %}{{ _("Sign Out") }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="container my-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-6">
|
|
<!-- Page Header -->
|
|
<div class="text-center mb-4">
|
|
<h1 class="fw-bold">{{ _("Sign Out") }}</h1>
|
|
<p>{{ _("Are you sure you want to sign out?") }}</p>
|
|
</div>
|
|
|
|
<!-- Sign Out Form -->
|
|
<form method="post" action="{% url 'logout' %}">
|
|
{% csrf_token %}
|
|
{{ redirect_field }}
|
|
<div class="d-grid gap-2 mt-3">
|
|
<button type="submit" class="btn btn-danger btn-lg">
|
|
<i class="bi bi-box-arrow-right"></i> {{ _("Sign Out") }}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %} |