<div id="blockFavoris" class="grid-x align-stretch">
{% if app.request.attributes.get('_route') != 'adminlte_welcome' %}
<div class="large-4 small-4">
<div class="text-center">
{# removed bg-gray-active#}
<a href="{{ path('adminlte_welcome'|route_alias) }}" class="text-center">
<span class="glyphicon glyphicon-arrow-left"></span>
Revenir à l'accueil
</a>
</div>
</div>
{% endif %}
{% if app.request.attributes.get('_route') != 'app_forgot_password_request' %}
<div class="large-4 small-4">
<div class="text-center">
{# removed bg-gray#}
<a href="{{ path('adminlte_password_reset'|route_alias) }}" class="text-center">
<span class="glyphicon glyphicon-send"></span>
{{ 'I forgot my password'|trans({}, 'AdminLTEBundle') }}
</a>
</div>
</div>
{% else %}
<div class="large-4 small-4">
<div class="text-center">
{# removed bg-gray and border-btn#}
<a href="{{ path('app_login'|route_alias) }}" class="text-center ">
<span class="glyphicon glyphicon-user"></span>
{{ 'Back to login'|trans({}, 'AdminLTEBundle') }}
</a>
</div>
</div>
{% endif %}
{% if app.request.attributes.get('_route') != 'registration' %}
<div class="large-4 small-4">
<div class="text-center">
{# removed bg-gray#}
<a href="{{ path('adminlte_registration'|route_alias) }}" class="text-center">
<span class="glyphicon glyphicon-pencil"></span>
{{ 'Register a new account'|trans({}, 'AdminLTEBundle') }}
</a>
</div>
</div>
{% else %}
<div class="large-4 small-4">
<div class="text-center">
{# removed bg-gray and border-btn#}
<a href="{{ path('app_login'|route_alias) }}" class="text-center">
<span class="glyphicon glyphicon-user"></span>
{{ 'Back to login'|trans({}, 'AdminLTEBundle') }}
</a>
</div>
</div>
{% endif %}
</div>