{% extends 'portal/base.html' %} {% load staticfiles %} {% load app_tags %} {% block css %} {{ block.super }} {% endblock css %} {% block scripts %} {{ block.super }} {% endblock scripts %} {% block pageID %}id="homeWrapper"{% endblock %} {% block content %} {{ block.super }}

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_title }} {{ teacher_signup_form.teacher_title.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 }} {{ teacher_signup_form.teacher_password }} {{ teacher_signup_form.teacher_password.errors }} {{ teacher_signup_form.teacher_confirm_password }} {{ teacher_signup_form.teacher_confirm_password.errors }}
{% if captcha %} {{ teacher_signup_form.captcha }} {% endif %}

Register as an independent student

Are you part of a school or club? If so, please log-in or speak to your teacher. If you want to register as an independent student, please register below:

{% csrf_token %} {{ student_signup_form.non_field_errors }} {{ student_signup_form.name }} {{ student_signup_form.name.errors }} {{ student_signup_form.username }} {{ student_signup_form.username.errors }} {{ student_signup_form.email }} {{ student_signup_form.email.errors }} {{ student_signup_form.password }} {{ student_signup_form.password.errors }} {{ student_signup_form.confirm_password }} {{ student_signup_form.confirm_password.errors }}
{% if captcha %} {{ student_signup_form.captcha }} {% endif %}
{% endblock content %}