{% extends "base.html" %} {% block title %}Sign up{% endblock %} {% block content_header %}Sign up{% endblock %} {% block main_content %} {% if form.errors %}

Please correct the errors below:

{% endif %}
{% if form.username.errors %} {{ form.username.errors|join:", " }}{% endif %}
{{ form.username }}
{% if form.email.errors %} {{ form.email.errors|join:", " }}{% endif %}
{{ form.email }}
{% if form.password1 %}
{% if form.password1.errors %} {{ form.password2.errors|join:", " }}{% endif %}
{{ form.password1 }}
{% endif %} {% if form.password2 %}
{% if form.password2.errors %} {{ form.password2.errors|join:", " }}{% endif %}
{{ form.password2 }}
{% endif %}
{% if form.tos.errors %} {{ form.tos.errors|join:", " }}{% endif %}  {{ form.tos }}
{% endblock %} {% block sidebar %}

Fill out the form to the left (all fields are required), and your account will be created; you'll be sent an email with instructions on how to finish your registration.

{% endblock %}