- {# Display application or login form #}
- {% if is_granted('ROLE_GUEST') %}
- <section>
- {{ include('@RapsysAir/form/_application.html.twig') }}
- </section>
- {% elseif not is_granted('IS_AUTHENTICATED_REMEMBERED') %}
- <section>
- {{ include('@RapsysAir/form/_login.html.twig') }}
- </section>
- {% endif %}