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

{% trans "Register" %}

{% trans "Already a member?" %}

{% trans "Login" %}

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

{% csrf_token %}
{{ form.username.errors}} {{ form.username }} {% trans "This name you will use to log in and won't appear to other users. Only you will see this." %}
{{ form.password.errors}} {{ form.password }} ({% trans "e.g. 2086" %})
{% if settings.profiles.UserProfilesSettings.activate_display_name and settings.profiles.UserProfilesSettings.capture_display_name_on_reg %}
{{ form.alias.errors}} {{ form.alias }} {% trans "We value your online security, therefore we hide your username and allow you to comment and interact with the site with a display name." %}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_dob and settings.profiles.UserProfilesSettings.capture_dob_on_reg %}
{{ form.date_of_birth.errors}} {{ form.date_of_birth }} {% trans "Let us know your birthday to get access to exclusive content." %}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_gender and settings.profiles.UserProfilesSettings.capture_gender_on_reg %}
{{ form.gender.errors}} {{ form.gender }} {% trans "Only you will see this" %}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_location and settings.profiles.UserProfilesSettings.capture_location_on_reg %}
{{ form.location.errors}} {{ form.location }} {% trans "Only you will see this" %}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_education_level and settings.profiles.UserProfilesSettings.capture_education_level_on_reg %}
{{ form.education_level.errors}} {{ form.education_level }} {% trans "Only you will see this" %}
{% endif %} {% if settings.profiles.UserProfilesSettings.show_mobile_number_field and settings.profiles.UserProfilesSettings.country_code %}
{{ form.mobile_number.errors}} {{ form.mobile_number }} {% trans "(e.g. 0900000013)" %}
{% endif %} {% if settings.profiles.UserProfilesSettings.show_email_field %}
{{ form.email.errors}} {{ form.email }} {% trans "(e.g. example@foo.com)" %}
{% endif %} {% if settings.profiles.UserProfilesSettings.show_security_question_fields %} {% for field in form %} {% if field in form.security_questions %}
{{ field.errors}} {{ field }}
{% endif %} {% endfor %} {% endif %}
{% if form.terms_and_conditions.errors %} {% trans "Please accept the T&Cs in order to complete the registration" %} {% endif %} {{ form.terms_and_conditions }} {% if settings.profiles.UserProfilesSettings.terms_and_conditions %} {% trans "I accept the Terms and Conditions" %} {% else %} {% endif %}
{% endblock %}