{% extends "portal/teach/base_registering.html" %} {% load staticfiles %} {% load app_tags %} {% block content %}
{% if teacher.pending_join_request %}

Join an existing school or club

You have a pending request to join {{ teacher.pending_join_request.name }}, {{ teacher.pending_join_request.postcode }}.
Once the administrator of your school or club has approved your request, you will be able to continue.

Please note: You may only have one request to join a school or club at a time. If you wish to join another school or club, you must withdraw your pending request first.

{% csrf_token %}
{% else %} {% if teacher.school %}

It looks like you've already created your school ({{ user.new_teacher.school.name }})

Add a class
{% else %}

Create a school or club

Join an existing school

Progress < 1 of 4 >

25% Complete

As the first person from your school or club to register for Code for Life, by default, you become the organisation's administrator.

{% csrf_token %} {{ create_form.non_field_errors }} {% for field in create_form %}
{{ field }} {% if not field == create_form.country %} {% endif %}
{{ field.help_text }} {{ field.errors }}
{% endfor %}

You can search for your school or club by name and/or postcode below. A request will be sent to the school or club administrator for processing.

{% csrf_token %} {{ join_form.non_field_errors }}
{{ join_form.fuzzy_name }}
{{ join_form.fuzzy_name.help_text }} {{ join_form.fuzzy_name.errors }}
{{ join_form.chosen_org }}
{{ join_form.chosen_org.help_text }} {{ join_form.chosen_org.errors }}
{% endif %} {% endif %} {% endblock content %}