{% extends "base_2col.html" %} {% block sectionid %}login{% endblock %} {% block title %}Sign up{% endblock %} {% block billboard %}Sign up{% endblock %} {% block content-related %}

Fill out the form to the right (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 %} {% block content %} {% if form.errors %}

Please correct the errors below:

{% endif %}
{% if form.firstname.errors %} {{ form.firstname.errors|join:", " }}{% endif %}
{{ form.firstname|safe }}
{% if form.lastname.errors %} {{ form.lastname.errors|join:", " }}{% endif %}
{{ form.lastname|safe }}
{% if form.username.errors %} {{ form.username.errors|join:", " }}{% endif %}
{{ form.username|safe }}
{% if form.email.errors %} {{ form.email.errors|join:", " }}{% endif %}
{{ form.email|safe }}
{% if form.password1.errors %} {{ form.password2.errors|join:", " }}{% endif %}
{{ form.password1|safe }}
{% if form.password2.errors %} {{ form.password2.errors|join:", " }}{% endif %}
{{ form.password2|safe }}
{% if form.tos.errors %} {{ form.tos.errors|join:", " }}{% endif %}  {{ form.tos|safe }}
{% endblock %}