From b1e0e09a906de82e8b48a34ec051603102021ddc Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 2 Sep 2021 22:19:20 +0200 Subject: [PATCH] crispy sign out --- InvenTree/templates/account/logout.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 InvenTree/templates/account/logout.html diff --git a/InvenTree/templates/account/logout.html b/InvenTree/templates/account/logout.html new file mode 100644 index 0000000000..58d32e4ab8 --- /dev/null +++ b/InvenTree/templates/account/logout.html @@ -0,0 +1,21 @@ +{% extends "account/base.html" %} + +{% 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 %}