11 lines
248 B
HTML
11 lines
248 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>Logout</h2>
|
|
<p>Are you sure you want to log out?</p>
|
|
<form method="post" action="{% url 'logout' %}">
|
|
{% csrf_token %}
|
|
<button type="submit">Log Out</button>
|
|
</form>
|
|
{% endblock %}
|