{% extends 'records/base.html' %} {% block title %}Sign Up{% endblock %} {% block content %}

Create Account

{% csrf_token %} {% if form.non_field_errors %} {% endif %}
{{ form.username }} {% if form.username.errors %}
{{ form.username.errors }}
{% endif %}
Letters, digits and @/./+/-/_ only.
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.password1 }} {% if form.password1.errors %}
{{ form.password1.errors }}
{% endif %}
Your password must contain at least 8 characters and can't be too similar to your other personal information.
{{ form.password2 }} {% if form.password2.errors %}
{{ form.password2.errors }}
{% endif %}

Already have an account? Login here

{% endblock %}