{% extends "base_account.html" %} {% load i18n %} {% load include_asset %} {% load show_government_badge %} {% block title %}Login{% endblock %} {% block content %}

{% trans "Profile" %}

{% if messages %} {% endif %}
{% csrf_token %}

{% trans "Your details" %}

    {% for error in form.non_field_errors %}
  • {% include_asset "icons/account-alert.svg" %}
    {% trans "Invalid email address." %}
    {{ error }}
  • {% endfor %}

{{ form.errors.name }} {{ form.name }}
{{ form.errors.email }} {{ form.email }} {% show_government_badge form.email.value as show_badge %} {% if show_badge %} {% include_asset "icons/check.svg" %}{% trans "Government" %} {% endif %}
{% if text_change_pending %}
{{ text_change_pending }}{{ text_email }}
{% trans "Please check your inbox to validate the change." %}
{% trans "Click " %}{% trans "here" %} {% trans "to resend the confirmation e-mail." %}
{% endif %}

{% trans "Avatar" %}

{% endblock %}