diff --git a/photo21/templates/account/logout.html b/photo21/templates/account/logout.html new file mode 100644 index 0000000..7db6ac3 --- /dev/null +++ b/photo21/templates/account/logout.html @@ -0,0 +1,24 @@ +{% extends "account/base.html" %} +{% comment %} +SPDX-License-Identifier: GPL-2.0-or-later +{% endcomment %} +{% load i18n %} +{% block head_title %}{% trans "Sign Out" %}{% endblock %} + +{% block content %} +
+

+ {% trans "Sign Out" %} +

+
+

{% trans 'Are you sure you want to sign out?' %}

+
+ {% csrf_token %} + {% if redirect_field_value %} + + {% endif %} + +
+
+
+{% endblock %}