{% extends 'portal/base.html' %} {% load static %} {% load app_tags %} {% block content %} {% include "portal/partials/service_unavailable_popup.html" %}

Teacher/Tutor

Register below to create your free account.

You will have access to teaching resources, progress tracking and lesson plans for Rapid Router.
{% csrf_token %} {{ teacher_signup_form.non_field_errors }}
{{ teacher_signup_form.teacher_first_name }} {{ teacher_signup_form.teacher_first_name.help_text }} {{ teacher_signup_form.teacher_first_name.errors }}
{{ teacher_signup_form.teacher_last_name }} {{ teacher_signup_form.teacher_last_name.help_text }} {{ teacher_signup_form.teacher_last_name.errors }}
{{ teacher_signup_form.teacher_email }} {{ teacher_signup_form.teacher_email.help_text }} {{ teacher_signup_form.teacher_email.errors }}
{{ teacher_signup_form.consent_ticked }}

I am over 18 years old have read and understood the Terms of use and the Privacy notice.

{% 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.help_text }} {{ teacher_signup_form.teacher_password.errors }}
{{ teacher_signup_form.teacher_confirm_password }}
{{ teacher_signup_form.teacher_confirm_password.help_text }} {{ teacher_signup_form.teacher_confirm_password.errors }}
{{ teacher_signup_form.captcha }}

Independent learner

Register below if you are not part of a school or club and wish to set up a free home learning account.

You will have access to learning resources for Rapid Router.
{% csrf_token %}
{{ independent_student_signup_form.date_of_birth.help_text }}
{{ independent_student_signup_form.date_of_birth }}
{{ independent_student_signup_form.date_of_birth.errors }}
{{ independent_student_signup_form.non_field_errors }}
{{ independent_student_signup_form.name }} {{ independent_student_signup_form.name.help_text }} {{ independent_student_signup_form.name.errors }}
{{ independent_student_signup_form.email }} {{ independent_student_signup_form.email.help_text }} {{ independent_student_signup_form.email.errors }}
{% include 'portal/partials/register_newsletter_tickbox.html' with newsletter_ticked=independent_student_signup_form.newsletter_ticked %}
We will send your parent/guardian an email to ask them to activate the account for you. Once they've done this you'll be able to log in using your name and password.
{{ independent_student_signup_form.password }}
{{ independent_student_signup_form.password.help_text }} {{ independent_student_signup_form.password.errors }}
{{ independent_student_signup_form.confirm_password }}
{{ independent_student_signup_form.confirm_password.help_text }} {{ independent_student_signup_form.confirm_password.errors }}
{{ independent_student_signup_form.captcha }}
{% endblock content %}