{% extends 'accounts/base.html' %} {% block title %}Sign Up{% endblock title %} {% block content %}
{% if form.errors %}
{{form.errors.username}}
{{form.errors.email}}
{{form.errors.password1}}
{{form.errors.password2}}
{% endif %}

Sign Up

{% csrf_token %}

{{form.username.label}} {{form.username}}

{{form.email.label}} {{form.email}}

{{form.password1.label}} {{form.password1}}

{{form.password2.label}} {{form.password2}}

  1. Username has to be 150 characters or fewer. Letters, digits and @/./+/-/_ only.

  2. Your password can’t be too similar to your other personal information.

  3. Your password must contain at least 8 characters.

  4. Your password can’t be a commonly used password.

  5. Your password can’t be entirely numeric.

Already have an account? LogIn.

{% endblock content %} {% block scripts %} {% endblock scripts %}