templates/_loginout.html.twig line 2

Open in your IDE?
  1. <div class="col_33">
  2.   {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
  3.     <a href="{{ path('app_logout') }}">{% trans %}Logout{% endtrans %}</a>
  4.   {% else %}
  5.     {% if loginForm is defined %}
  6.       {{ form(loginForm) }}
  7.     {% endif %}
  8.   {% endif %}
  9. </div>