{% extends 'portal/base.html' %} {% load staticfiles %} {% load app_tags %} {% block content %}

Register as a teacher

Once you've registered your personal details and logged in, you'll be able to create your school or club, or join other teachers at your institution.

{% csrf_token %} {{ teacher_signup_form.non_field_errors }} {{ teacher_signup_form.teacher_first_name }} {{ teacher_signup_form.teacher_first_name.errors }} {{ teacher_signup_form.teacher_last_name }} {{ teacher_signup_form.teacher_last_name.errors }} {{ teacher_signup_form.teacher_email }} {{ teacher_signup_form.teacher_email.errors }} {% include 'portal/partials/register_newsletter_tickbox.html' with newsletter_ticked=teacher_signup_form.newsletter_ticked %} {{ teacher_signup_form.teacher_password }} {{ teacher_signup_form.teacher_password.errors }} {{ teacher_signup_form.teacher_confirm_password }} {{ teacher_signup_form.teacher_confirm_password.errors }}
{{ teacher_signup_form.captcha }}

Register as an independent student

Are you part of a school or club? If so, please log in or speak to your teacher.

{% csrf_token %} {{ independent_student_signup_form.non_field_errors }} {{ independent_student_signup_form.name }} {{ independent_student_signup_form.name.errors }} {{ independent_student_signup_form.username }} {{ independent_student_signup_form.username.errors }} {{ independent_student_signup_form.email }} {{ independent_student_signup_form.email.errors }} {% include 'portal/partials/register_over_required_age_tickbox.html' with is_over_required_age=independent_student_signup_form.is_over_required_age %} {% include 'portal/partials/register_newsletter_tickbox.html' with newsletter_ticked=independent_student_signup_form.newsletter_ticked %} {{ independent_student_signup_form.password }} {{ independent_student_signup_form.password.errors }} {{ independent_student_signup_form.confirm_password }} {{ independent_student_signup_form.confirm_password.errors }}
{{ independent_student_signup_form.captcha }}
{% endblock content %}