{% 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 %}

You are logged under the account {{profile}}

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