16 lines
No EOL
598 B
HTML
16 lines
No EOL
598 B
HTML
{% extends 'base.html' %}
|
|
{% load crispy_forms_tags i18n %}
|
|
|
|
{% block head_title %}{% trans "Log Out" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mx-auto max-w-md mt-6">
|
|
<h2 class="text-3xl font-bold text-center mb-6">{% trans "Sign Out" %}</h2>
|
|
<p class="text-center mb-6">{% trans "Are you sure you want to sign out?" %}</p>
|
|
<form method="post" action="{% url 'account_logout' %}" class="space-y-4 text-center">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button class="btn btn-error w-full" type="submit">{% trans "Sign Out" %}</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |