From fcf54fc0d264ba26f3029061a64f72851eb5311c Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 5 Sep 2021 10:32:08 +0200 Subject: [PATCH] make password change crispy --- InvenTree/templates/account/password_change.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 InvenTree/templates/account/password_change.html diff --git a/InvenTree/templates/account/password_change.html b/InvenTree/templates/account/password_change.html new file mode 100644 index 0000000000..0db6cef00a --- /dev/null +++ b/InvenTree/templates/account/password_change.html @@ -0,0 +1,16 @@ +{% extends "account/base.html" %} + +{% load i18n crispy_forms_tags %} + +{% block head_title %}{% trans "Change Password" %}{% endblock %} + +{% block content %} +

{% trans "Change Password" %}

+ +
+ {% csrf_token %} + {{ form|crispy }} + + {% trans "Forgot Password?" %} +
+{% endblock %}