templates/index.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block body %}
  3.     <h1 class="dashboard-title">Herzlich Willkommen</h1>
  4.     <h2 class="dashboard-subtitle">{{ app.user.firstname ?? '' }}</h2>
  5.   {% if not is_granted('ROLE_USER') %}
  6.     <div class="dashboard-login">
  7.       <form action="/login" method="get">
  8.         <button class="button-submit" type="submit">Zum Login</button>
  9.       </form>
  10.     </div>
  11.   {% endif %}
  12. {% endblock %}