{% extends "base.html" %} {% load i18n %} {% load account %} {% block title %}{% trans "Sign Out" %}{% endblock %} {% block content %}

{% trans "Account Settings" %}

{% trans "Manage your personal details and security." %}

{# ------------------- LEFT COLUMN: ACCOUNT MENU (New Card Style) ------------------- #}
{# Assuming a main 'Profile' or 'Personal Information' page exists #} {% trans "Personal Information" %} {% trans "Email Addresses" %} {% trans "Change Password" %} {# Highlight the current page (Sign Out) as active #} {% trans "Sign Out" %}
{# ------------------- RIGHT COLUMN: LOGOUT CONFIRMATION ------------------- #}

{% trans "Confirm Sign Out" %}

{% trans "Are you sure you want to sign out of your account?" %}

{% csrf_token %} {% if redirect_field_value %} {% endif %}
{# Sign Out button in danger color #} {# Cancel/Go Back button with outline #} {% trans "Cancel" %}
{% endblock content %}