From a70da01edf5721fd733b7605d5e1a1621b17344c Mon Sep 17 00:00:00 2001 From: Anna Sidwell Date: Wed, 28 Mar 2018 22:46:00 +1100 Subject: [PATCH] Prettyify password reset form --- .../registration/password_reset_form.html | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/ojusomap/templates/registration/password_reset_form.html b/ojusomap/templates/registration/password_reset_form.html index 10b1fc1..9295650 100644 --- a/ojusomap/templates/registration/password_reset_form.html +++ b/ojusomap/templates/registration/password_reset_form.html @@ -1,11 +1,20 @@ {% extends "base.html" %} {% load i18n %} +{% load bootstrap3 %} +{% load crispy_forms_tags %} {% block content %} -
- {% csrf_token %} - {{ form.as_p }} - -
+
+
+

{% trans 'Reset your password' %}

+

{% trans 'Enter your email address below' %}

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