{% extends ac_layout %} {% block content %} {% load static %}
{{ _('account_information')|title }}
{{ _('username')|title }}

{{ user.username }}

{{ _('private_information') }}
{% csrf_token %}
{{ _('email') }} {{ user.email }}
{{ _('name') }} {{ user.first_name }}
{{ _('gender') }} {{ user.profile.get_gender_display }}
{{ _('date_of_birth') }} {{ user.profile.date_of_birth }}
{{ _('phone_number') }} {{ user.profile.phone_number }}
{{ _('linked_accounts') }}

Google

{% if google %}

Connected

{% else %}

Not Connected

{% endif %}

Steam

{% if steam %}

Connected

{% else %}

Not Connected

{% endif %}

Twitch

{% if twitch %}

Connected

{% else %}

Not Connected

{% endif %}

Discord

{% if discord %}

Connected

{% else %}

Not Connected

{% endif %}
{% endblock %}