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

Complete registration

{% if error_message %}
  • {{ error_message }}
{% else %}

Please create a password to complete your onboarding. It should be 10 characters long and a mix of upper and lower case letters, numbers and special characters, making it hard to guess.

{% csrf_token %} {{ invited_teacher_form.non_field_errors }}
{{ invited_teacher_form.teacher_password }}
{{ invited_teacher_form.teacher_password.help_text }} {{ invited_teacher_form.teacher_password.errors }}
{{ invited_teacher_form.teacher_confirm_password }}
{{ invited_teacher_form.teacher_confirm_password.help_text }} {{ invited_teacher_form.teacher_confirm_password.errors }}
{{ invited_teacher_form.consent_ticked }}

I have read and understood the Terms of use and the Privacy Notice.

{% include 'portal/partials/register_newsletter_tickbox.html' with newsletter_ticked=invited_teacher_form.newsletter_ticked %}
{% endif %}
{% endblock content %}