{% extends "base.html" %} {% load wagtailsettings_tags %} {% get_settings %} {% block content %}
{% trans "Thank you for joining!" %}

{% trans "Let us know your birthday to get access to exclusive content." %}

{% csrf_token %} {# profile_settings.capture_display_name_on_reg settings.profiles.UserProfilesSettings.capture_dob_name_on_reg settings.profiles.UserProfilesSettings.capture_gender_name_on_reg #} {% if settings.profiles.UserProfilesSettings.activate_display_name and not settings.profiles.UserProfilesSettings.capture_display_name_on_reg %}
{{ form.alias.errors }} {{ form.alias }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_dob and not settings.profiles.UserProfilesSettings.capture_dob_on_reg %}
{{ form.date_of_birth }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_gender and not settings.profiles.UserProfilesSettings.capture_gender_on_reg %}
{{ form.gender.errors }} {{ form.gender }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_education_level and not not settings.profiles.UserProfilesSettings.capture_education_level_on_reg_name_on_reg %}
{{ form.education_level }} {{ form.education_level.errors}}
{% endif %} {% trans "Skip" %}
{% endblock %}