connexion.html.twig 485B

123456789101112131415
  1. {% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
  2. <div>
  3. <a href="{{ path('fos_user_profile_show') }}">{{ 'layout.logged_in_as'|trans({'%username%': app.user.username}, 'FOSUserBundle') }}</a> |
  4. <a href="{{ path('fos_user_security_logout') }}">
  5. {{ 'layout.logout'|trans([], 'FOSUserBundle') }}
  6. </a>
  7. </div>
  8. {% endif %}
  9. {% for key, flash in app.session.getFlashes() %}
  10. <div class="{{ flash }}">
  11. {{ key|trans([], 'FOSUserBundle') }}
  12. </div>
  13. {% endfor %}