From 6e6676d18c64551a9c827f33f0b3d8820ef6b698 Mon Sep 17 00:00:00 2001 From: Y Date: Sat, 5 Oct 2024 17:48:28 -0400 Subject: [PATCH] improve set password page --- apps/templates/account/password_set.html | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/apps/templates/account/password_set.html b/apps/templates/account/password_set.html index 7786e9e53..336a2fed6 100644 --- a/apps/templates/account/password_set.html +++ b/apps/templates/account/password_set.html @@ -1,4 +1,5 @@ {% extends "account/base.html" %} +{% load sass_tags %} {% load i18n %} {% load crispy_forms_tags %} @@ -6,12 +7,26 @@ {% block head_title %}{% trans "Set Password" %}{% endblock %} {% block inner %} -

{% trans "Set Password" %}

+ +{% include '_home/_nav.html' %} + +
+ + + + + +

{% trans "Set Password" %}

{% csrf_token %} {{ form|crispy }}
+ +
{% endblock %}