{% extends "base.html" %} {% load i18n static core_tags wagtailsettings_tags %} {% get_settings %} {% block content %}

{% trans "Join" %}

{% trans "Not a member yet? Join us by signing up below." %}

{% csrf_token %}

{% trans "Choose a username" %}

{{ form.username.errors}} {{ form.username }}

{% trans "Choose a 4-digit pin" %}

{{ form.password.errors}} {{ form.password }}
{% if settings.profiles.UserProfilesSettings.show_mobile_number_field %}

{% trans "Enter your mobile number" %}

{% trans "(e.g. +27900000013)" %}

{{ form.mobile_number.errors}} {{ form.mobile_number }}
{% endif %} {% if settings.profiles.UserProfilesSettings.show_email_field %}

{% trans "Enter your email addresss" %}

{% trans "(e.g. example@foo.com)" %}

{{ form.email.errors}} {{ form.email }}
{% endif %} {% if form.terms_and_conditions.errors %}

{% trans "Please accept the T&Cs in order to complete the registration" %}

{% endif %} {{ form.terms_and_conditions }} {% trans "I accept the Terms and Conditions" %}


{% trans "already joined?" %}
{% endblock %}