diff --git a/src/postorius/templates/postorius/users/new.html b/src/postorius/templates/postorius/users/new.html index 65ecc07..69ab5d6 100644 --- a/src/postorius/templates/postorius/users/new.html +++ b/src/postorius/templates/postorius/users/new.html @@ -7,11 +7,44 @@ {% if user.is_superuser %} {% users_nav 'user_new' 'Create User' %} {% endif %} + +
{% csrf_token %} + {{ form.non_field_errors }} +
+ Create a New User + +
+ {{ form.display_name.errors }} + +
{{ form.display_name}}
+
- {% csrf_token %} -
- {{ form.as_p }} - -
- +
+ {{ form.email.errors }} + +
{{ form.email }}
+
+ +
+ {{ form.password.errors }} + +
{{ form.password }}
+
+ +
+ {{ form.password_repeat.errors }} + +
+ {{ form.password_repeat }} +

This must match the password typed above so we can be sure we've got the right password.

+
+
+ +
+ +
+ +
+ + {% endblock main %}