{% extends "base.html" %} {% block content %}
{# include template "patterns/basics/headings/sp_variations/heading.html" #} {% trans "Let us know your birthday to get access to exclusive content." as headingtext %} {% with type="component" htmltag="h1" title=headingtext %}
<{{htmltag}}>{{title}}
{% endwith %} {# end include template #}
{% csrf_token %} {{ form.non_field_errors }} {% if settings.profiles.UserProfilesSettings.activate_display_name %}
{{ form.alias }} {{ form.alias.errors }}

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

{% endif %} {% if settings.profiles.UserProfilesSettings.activate_dob %}
{{ form.date_of_birth }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_gender %}
{{ form.gender }} {{ form.gender.errors }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_education_level %}
{{ form.education_level }} {{ form.education_level.errors}}

{% trans "Only you will see this." %}

{% endif %}
Back to profile
{% endblock %}