Easy_solution/templates/index/index.html.twig

13 lines
300 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Test - index{% endblock %}
{% block body %}
{% if app.user %}
<div class="mb-3">
You are logged in as {{ app.user.userIdentifier }}, <a href="{{ path('app_logout') }}">Logout</a>
</div>
{% endif %}
{% endblock %}