{% set post_confirm_message=_("You have been logged correctly") %} {% if not embedded %}{% extends 'base/base.html' %}{% endif %} {% import 'input/form.html' as form with context %} {% import 'input/field.html' as field with context %} {% block title %}{{C.APP_NAME}}{% endblock %} {% block confirm_message %} {% trans %}You have been logged correctly{% endtrans %} {% endblock confirm_message %} {% block body %}
{% if guest_session %}

{% trans %}You are logged as a guest{% endtrans %}

{% else %}

{% trans name=''|safe + profile + ''|safe %}You are logged under the account {{name}} {% endtrans %}

{% endif %}

{% trans session_started=''|safe + session_started|date_fmt('relative') + ''|safe %}You logged {{session_started}}{% endtrans %}

{% call form.form() %} {{ field.meta('type', 'disconnect') }} {{ field.submit(_("Disconnect")) }} {% endcall %}
{% endblock body %}