diff --git a/registration/login.html b/registration/login.html index 0674305..e41c729 100644 --- a/registration/login.html +++ b/registration/login.html @@ -2,7 +2,7 @@ {% load i18n %} {% block content %} -
+ {{ form.as_p }} @@ -13,3 +13,12 @@

{% trans "Forgot password" %}? {% trans "Reset it" %}!

{% trans "Not a member" %}? {% trans "Register" %}!

{% endblock %} + + +{% block scripts %} + +{% endblock %} diff --git a/registration/password_reset_confirm.html b/registration/password_reset_confirm.html index 439184d..aeda0bf 100644 --- a/registration/password_reset_confirm.html +++ b/registration/password_reset_confirm.html @@ -5,7 +5,7 @@ {% if validlink %} - + {{ form.as_p }} @@ -18,3 +18,12 @@ {% endif %} {% endblock %} + + +{% block scripts %} + +{% endblock %} diff --git a/registration/password_reset_form.html b/registration/password_reset_form.html index 6e6358e..cb2f1d0 100644 --- a/registration/password_reset_form.html +++ b/registration/password_reset_form.html @@ -2,9 +2,18 @@ {% load i18n %} {% block content %} - + {{ form.as_p }}
{% endblock %} + + +{% block scripts %} + +{% endblock %} diff --git a/registration/registration_form.html b/registration/registration_form.html index d74f39e..eac549b 100644 --- a/registration/registration_form.html +++ b/registration/registration_form.html @@ -2,10 +2,19 @@ {% load i18n %} {% block content %} -
+ {{ form.as_p }} {% csrf_token %}
{% endblock %} + + +{% block scripts %} + +{% endblock %}