{% extends "registration/base.html" %} {% load i18n %} {% block title %}{% trans "Sign up" %}{{ block.super }}{% endblock %} {% block headcss %} {% endblock headcss %} {% block content %} {% if form.non_field_errors %}
Please correct the errors below:
{{ form.non_field_errors }}
{% endif %}

Create an account

{% csrf_token %}
{{ form.first_name }}
{% if form.first_name.errors %}
{{ form.first_name.errors.as_text }}
{% endif %}
{{ form.last_name }}
{% if form.last_name.errors %}
{{ form.last_name.errors.as_text }}
{% endif %}
{{ form.email }}
{% if form.email.errors %}
{{ form.email.errors.as_text }}
{% endif %}
{{ org_form.name }}
{% if org_form.name.errors %}
{{ org_form.name.errors.as_text }}
{% endif %}

{{ org_form.url }}
{% if org_form.url.errors %}
{{ org_form.url.errors.as_text }}
{% endif %}
{{ org_form.description }}
{% if org_form.description.errors %}
{{ org_form.description.errors.as_text }}
{% endif %}
{{ org_form.address }}
{% if org_form.address.errors %}
{{ org_form.address.errors.as_text }}
{% endif %}
{{ org_form.country }}
{% if org_form.country.errors %}
{{ org_form.country.errors.as_text }}
{% endif %}
{{ org_form.number }}
{% if org_form.number.errors %}
{{ org_form.number.errors.as_text }}
{% endif %}
{{ form.password1 }}
{% if form.password1.errors %}
{{ form.password1.errors.as_text }}
{% endif %}
{{ form.password2 }}
{% if form.password2.errors %}
{{ form.password2.errors.as_text }}
{% endif %}
{{ form.tos1 }} I acknowledge that the Khan Academy videos and exercises used within KA Lite are for non-commercial purposes only.
{% if form.tos1.errors %}
{{ form.tos1.errors.as_text }}
{% endif %}
{{ form.tos2 }} I acknowledge having read the Khan Academy API terms of service, and that KA Lite uses this API.
{% if form.tos2.errors %}
{{ form.tos2.errors.as_text }}
{% endif %}
Subscribe to our quarterly newsletter, to stay up to date on KA Lite's progress.

{% 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.
This account will let you log into the ticket tracker, claim tickets, and be exempt from spam filtering.
{% endblock %}