{% extends "blog/base.html" %} {% block content %}
{% if form.non_field_errors %}
{{ form.non_field_errors.0 }}
{% elif form.errors %}
There were some errors in the form.
{% endif %} {% csrf_token %}

Create an account

Maximum 150 characters. Only letters, digits and @/./+/-/_ characters. {% if form.username.errors %} {% for error in form.username.errors %}
{{ error }}
{% endfor %} {% endif %}
  • Your password shouldn't be too similar to your other personal information.
  • Your password need to be at least 8 characters long.
  • Your password can’t be a commonly used password.
  • Your password can’t be entirely numeric.
{% if form.password1.errors %} {% for error in form.password1.errors %}
{{ error }}
{% endfor %} {% endif %} Please enter your password again. {% if form.password2.errors %} {% for error in form.password2.errors %}
{{ error }}
{% endfor %} {% endif %}
Already Have An Account? Sign In
{% endblock content %}