pkmntrade.club/templates/account/logout.html
2025-02-26 00:17:06 -08:00

18 lines
No EOL
372 B
HTML

{% extends '_base.html' %}
{% load crispy_forms_tags %}
{% block title %}Log out{% endblock %}
{% block content %}
<h1>Sign Out</h1>
<p>Are you sure you want to sign out?</p>
<form method="post" action="{% url 'account_logout' %}">
{% csrf_token %}
{{ form|crispy }}
<button class="btn btn-danger" type="submit">Sign Out</button>
</form>
{% endblock content %}