templates/security/homepage.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Accueil{% endblock %}
  3. {% block body %}
  4.     <h2 class="title-section text-center mt-2">Bienvenue sur e-digi Med !</h2>
  5.     <div class="mt-5" id="div_presentation_login">
  6.         {% if is_granted('IS_AUTHENTICATED_FULLY') or is_granted('IS_AUTHENTICATED_REMEMBERED') %}
  7.             <p>
  8.                 Retour sur votre profil :
  9.             </p>
  10.             <a class="btn btn-info btn-information btn-mobile-block mt-2" href="{{ path('profil') }}"><h2>
  11.                     PROFIL</h2></a>
  12.         {% else %}
  13.             <p>
  14.                 Si vous souhaitez vous connecter, vous pouvez le faire ici :
  15.             </p>
  16.             <a class="btn btn-info btn-information btn-mobile-block mt-2" href="{{ path('app_login') }}"><h2>
  17.                     Connexion</h2></a>
  18.         {% endif %}
  19.     </div>
  20.     <style>
  21.         img {
  22.             width: 200px;
  23.             height: 200px;
  24.         }
  25.     </style>
  26. {% endblock %}