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

Please correct the errors below: {{ form.non_field_errors }}

{% endif %}

Create an account

{{ form.errors }}
{% csrf_token %}
{{ form.username }}{% if form.username.errors %} {{ form.username.errors|join:", " }}{% endif %}
{{ form.email }}{% if form.email.errors %} {{ form.email.errors|join:", " }}{% endif %}
{{ form.password1 }}{% if form.password1.errors %} {{ form.password1.errors|join:", " }}{% endif %}
{{ form.password2 }}{% if form.password2.errors %} {{ form.password2.errors|join:", " }}{% endif %}

{% endblock %} {% block content-related %}

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.

We'll only use your email to send you signup instructions. We hate spam as much as you do.

If you already have an account, you can log in.

{% endblock %}