{% extends "base.html.twig" %}{% block body %} <h1 class="dashboard-title">Herzlich Willkommen</h1> <h2 class="dashboard-subtitle">{{ app.user.firstname ?? '' }}</h2> {% if not is_granted('ROLE_USER') %} <div class="dashboard-login"> <form action="/login" method="get"> <button class="button-submit" type="submit">Zum Login</button> </form> </div> {% endif %}{% endblock %}