Easy_solution/templates/index/index.html.twig

14 lines
336 B
Twig

{% extends 'base.html.twig' %}
{% block title %}{{application}} - accueil{% endblock %}
{% block body %}
{% if app.user %}
<div class="w-100 h-100 p-5 m-auto">
You are logged in as {{ app.user.userIdentifier }}, <a href="{{ path('sso_logout') }}">Logout</a>
</div>
{% endif %}
{% endblock %}