<footer>
<div class="container height100">
<div class="row height100">
<div class="col-2 col-sm-4 col-md-5 col-lg-6 pt-4">
<img src="{{ asset('img/logo-p.png') }}" alt="Logo Planet Fitness">
</div>
<div class="col-10 col-sm-5 col-md-4 pt-3">
<div class="d-flex justify-content-around flex-wrap">
<div>
<h3 class="text-white font-size-medium">
{% if language is defined and language == 'it' %}
A proposito
{% else %}
{% trans %}A propos{% endtrans %}
{% endif %}
</h3>
{% if is_granted('ROLE_ADMIN') or is_granted('ROLE_WRITER') or is_granted('ROLE_BILLING') or is_granted('ROLE_SALE')%}
<a id="administration" class="font-size-medium" href="{{ path('AdminIndex')}}">
<p>Administration</p>
</a>
{% endif %}
<a href="
{% if app.session.get('contact') and account is defined and ('Root' in roles or 'Référent kit digitaux Les Mills' in roles) %}
{{ path('ContactAccountContactUs', {'salesforceAccountId': currentAccountSFId})}}
{% else %}
{% if language is defined and language == 'it' %}
{{ path('Contact', {'_locale': 'it'}) }}
{% else %}
{{path('Contact')}}
{% endif %}
{% endif %}
">
<p class="font-size-medium">
{% if language is defined and language == 'it' %}
Contattaci
{% else %}
{% trans %}Contactez-nous{% endtrans %}
{% endif %}
</p>
</a>
</div>
<div>
<h3 class="text-white font-size-medium">
{% if language is defined and language == 'it' %}
I nostri siti
{% else %}
{% trans %}Nos sites{% endtrans %}
{% endif %}
</h3>
{% if language is defined and language == 'it' %}
<a href="https://www.planet-fitness.com/it/" target="_blank"><p class="font-size-medium mb-1">Voglio i prodotti</p></a>
<a href="https://www.jobifit.com" target="_blank"><p class="font-size-medium mb-1">Mi formo</p></a>
{% else %}
<a href="https://www.planet-fitness.com/{% trans %}fr{% endtrans %}/" target="_blank"><p class="font-size-medium mb-1">{% trans %}Je m'équipe{% endtrans %}</p></a>
<a href="https://www.jobifit.com" target="_blank"><p class="font-size-medium mb-1">{% trans %}Je me forme{% endtrans %}</p></a>
{% endif %}
</div>
</div>
</div>
<div class="col-12 col-sm-3 col-md-3 col-lg-2 pt-3 height100 hide-on-small">
<div class="d-flex flex-wrap height100">
{% if app.session.get('contact') %}
{% if language is defined and language == 'it' %}
<a href="{{path('Logout', {'_locale': 'it'})}}" class="btn btn-login text-uppercase">Disconnessione</a>
{% else %}
<a href="{{path('Logout')}}" class="btn btn-login text-uppercase">{% trans %}Déconnexion{% endtrans %}</a>
{% endif %}
{% else %}
{% if language is defined and language == 'it' %}
<a href="{{path('PreLogin', {'_locale': 'it'})}}" class="btn btn-login text-uppercase">Connettiti</a>
{% else %}
<a href="{{ path('PreLogin') }}" class="btn btn-login text-uppercase">{% trans %}Connexion{% endtrans %}</a>
{% endif %}
{% endif %}
<small class="align-self-end text-center mb-2">www.planet-fitness.com <br>© {{ 'now' | date('Y') }}</small>
</div>
</div>
<div class="col-12 col-sm-3 col-md-2 pt-3 show-on-small">
<div class="d-flex justify-content-between">
{% if app.session.get('contact') %}
{% if language is defined and language == 'it' %}
<a href="{{path('Logout', {'_locale': 'it'})}}" class="btn btn-login text-uppercase">Disconnessione</a>
{% else %}
<a href="{{path('Logout')}}" class="btn btn-login text-uppercase">{% trans %}Déconnexion{% endtrans %}</a>
{% endif %}
{% else %}
{% if language is defined and language == 'it' %}
<a href="{{path('PreLogin', {'_locale': 'it'})}}" class="btn btn-login text-uppercase">Connettiti</a>
{% else %}
<a href="{{ path('PreLogin') }}" class="btn btn-login text-uppercase">{% trans %}Connexion{% endtrans %}</a>
{% endif %}
{% endif %}
<small class="text-center align-self-center mb-2">www.planet-fitness.com © {{ 'now' | date('Y') }}</small>
</div>
</div>
</div>
</div>
</footer>