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 %}