{% extends "registration/base.html" %} {% load i18n %} {% block title %}{% trans "Sign up" %}{% endblock %} {% block content %} {% if form.errors %}

{% trans "Please correct the errors below:" %} {{ form.non_field_errors }}

{% endif %}

{% trans "Create an account" %}

{% csrf_token %}

{% if form.first_name.errors %}

{{ form.first_name.errors.as_text }}

{% endif %} {{ form.first_name }}

{% if form.last_name.errors %}

{{ form.last_name.errors.as_text }}

{% endif %} {{ form.last_name }}

{% if form.email.errors %}

{{ form.email.errors.as_text }}

{% endif %} {{ form.email }}

{% if form.password1.errors %}

{{ form.password1.errors.as_text }}

{% endif %} {{ form.password1 }}

{% if form.password2.errors %}

{{ form.password2.errors.as_text }}

{% endif %} {{ form.password2 }}

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

{% trans "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." %}

{% trans "We'll only use your email to send you signup instructions. We hate spam as much as you do." %}

{% trans "This account will let you log into the ticket tracker, claim tickets, and be exempt from spam filtering." %}

{% endblock %}