{% extends "registration/base.html" %} {% load i18n %} {% block title %}{% translate "Sign up" %}{% endblock %} {% block content %}

{% translate "Create an account" %}

{% if form.errors %}

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

{% endif %}
{% csrf_token %}
{% if form.username.errors %}

{{ form.username.errors.as_text }}

{% endif %} {{ form.username }}
{% 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 content %} {% block content-related %}

{% translate "Help" %}

{% blocktranslate trimmed %} 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. {% endblocktranslate %}

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

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

{% blocktranslate trimmed %} Your username can only consist of alphanumeric characters and underscores and may be up to 30 characters long. {% endblocktranslate %}

{% endblock content-related %}