diff --git a/templates/registration/login.html b/templates/registration/login.html index a7d7477..fd49431 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -38,17 +38,7 @@
{% csrf_token %} - - - - - - - - - -
{{ form.username.label_tag }}{{ form.username }}
{{ form.password.label_tag }}{{ form.password }}
- + {{ form.as_div }}
diff --git a/templates/registration/new-user.html b/templates/registration/new-user.html index 1329b62..fa1ba68 100644 --- a/templates/registration/new-user.html +++ b/templates/registration/new-user.html @@ -34,28 +34,7 @@
{% csrf_token %} - - - - - - - - - - - - - - - - - - - - - -
{{ form.username.label_tag }}{{ form.username }}
{{ form.first_name.label_tag }}{{ form.first_name }}
{{ form.last_name.label_tag }}{{ form.last_name }}
{{ form.password1.label_tag }}{{ form.password1 }}
{{ form.password2.label_tag }}{{ form.password2 }}
+ {{ form.as_div }}
{% endblock %}