{% 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." %}

{% trans "Humaari kahaniyon mein kho kar ek naya confidence paa jaa. Ab tumhara time aa gaya... ChhaaJaa!" %}

{% csrf_token %}
{{ form.username }} {{ form.username.errors}} {% trans "This name you will use to log in and won't appear to other users. Only you will see this" %}.
{{ form.password }} {{ form.password.errors}} ({% trans "e.g. 2086" %})
{% if settings.profiles.UserProfilesSettings.activate_display_name and settings.profiles.UserProfilesSettings.capture_display_name_on_reg %}
{{ form.alias }} {{ form.alias.errors}} {% trans "Girl Effect values your online security, therefore we hide your username and allow you to comment and interact with the site anonymously. If you would like to interact with other people, like your friends to be able to see you as a username and not anonymous, update your username here" %}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_dob and settings.profiles.UserProfilesSettings.capture_dob_on_reg %}
{{ form.date_of_birth }} {{ form.date_of_birth.errors}} {% 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 }} {{ form.gender.errors}} {% trans "Only you will see this" %}.
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_location and settings.profiles.UserProfilesSettings.capture_location_on_reg %}
{{ form.location }} {{ form.location.errors}} {% trans "Only you will see this" %}.
{% endif %} {% if settings.profiles.UserProfilesSettings.show_mobile_number_field and settings.profiles.UserProfilesSettings.country_code %}
{{ form.mobile_number }} {{ form.mobile_number.errors}} {% trans "(e.g. 0754556789)" %}
{% endif %} {% if settings.profiles.UserProfilesSettings.show_email_field %}
{{ form.email }} {{ form.email.errors}} {% trans "(e.g. example@foo.com)" %}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_education_level and settings.profiles.UserProfilesSettings.capture_education_level_on_reg %}
{{ form.education_level }} {{ form.education_level.errors}} {% trans "Only you will see this" %}.
{% endif %} {% if settings.profiles.UserProfilesSettings.show_security_question_fields %} {% for field in form %} {% if field in form.security_questions %}
{{ field }} {{ field.errors}}
{% endif %} {% endfor %} {% endif %}
{{ form.terms_and_conditions }} {% if settings.profiles.UserProfilesSettings.terms_and_conditions %} {% else %} {% endif %} {% if form.terms_and_conditions.errors %}

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

{% endif %}
{% endblock %}