{% extends "base.html" %} {% load wagtailsettings_tags wagtailcore_tags %} {% get_settings %} {% block content %}
{# include template "patterns/basics/headings/sp_variations/heading.html" #} {% trans "Join Tujibebe" as headingtext %} {% with type="square" htmltag="h1" title=headingtext %}
<{{htmltag}}>{{title}}
{% endwith %} {# end include template #} {# include template "patterns/basics/headings/sp_variations/heading.html" #} {% trans "Already joined?" as headingtext %} {% trans "Log in here" as linktext %} {% url LOGIN_URL as link %} {% with type="micro" htmltag="p" title=headingtext hyperlink=link linktitle=linktext %} {% endwith %} {# end include template #} {# include template "patterns/basics/headings/sp_variations/heading.html" #} {% trans "Please complete this form to join" as headingtext %} {% with type="subheading" htmltag="h2" title=headingtext %}
<{{htmltag}}>{{title}}
{% endwith %} {# end include template #}
{% csrf_token %} {% if form.errors %}

{% trans "Please correct the indicated errors." %}

{% endif %}
{{ form.username }} {{ form.username.errors }}

{% trans "Please do not use your real name, phone number or email address as it's unsafe." %}

{% if settings.profiles.UserProfilesSettings.activate_display_name and settings.profiles.UserProfilesSettings.capture_display_name_on_reg %}
{{ form.alias }} {{ form.alias.errors }}

{% trans "Tujibebe 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 %}
{{ form.password.errors }}

{% trans "For example: 2048" %}

{% 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, but it's not mandatory to tell us" %})

{% 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 %}
{% trans "Security questions" as headingtext %} {% include "patterns/basics/headings/sp_variations/heading.html" with type="micro" htmltag="h3" title=headingtext %} {% for field in form %} {% if field in form.security_questions %}
{{ field }} {{ field.errors }}
{% endif %} {% endfor %}

{% trans "Please answer the above security questions. You'll have to provide these answers if you ever need to reset your password." %}

{% endif %}
{{ form.terms_and_conditions }} {% if settings.profiles.UserProfilesSettings.terms_and_conditions %} {% else %} {% endif %}
{% if form.terms_and_conditions.errors %}

{% trans "Please accept the terms and conditions in order to complete registration" %}

{% endif %}
{# include template "patterns/basics/headings/sp_variations/heading.html" #} {% trans "Already joined?" as headingtext %} {% trans "Log in here" as linktext %} {% url LOGIN_URL as link %} {% with type="micro" htmltag="p" title=headingtext hyperlink=link linktitle=linktext %} {% endwith %} {# end include template #}
{% endblock %}