{% extends "Global/layout.html.twig" %} {% trans_default_domain 'FOSUserBundle' %} {% set pagetitle = 'Sign in'|trans({}, 'messages') %} {% block title %}{{pagetitle}}{% endblock %} {% block content %}

{{ pagetitle }}

{% if services.getSetting("social_login_facebook_enabled") == "yes" or services.getSetting("social_login_google_enabled") == "yes" %}

{% if services.getSetting("social_login_facebook_enabled") == "yes" %}   {{ 'Sign in via Facebook'|trans({}, 'messages') }} {% endif %} {% if services.getSetting("social_login_google_enabled") == "yes" %}   {{ 'Sign in via Google'|trans({}, 'messages') }} {% endif %}

{{ 'OR'|trans({}, 'messages') }}

{% endif %} {% if error %} {% include "Global/message.html.twig" with { message: (error.messageKey|trans(error.messageData, 'security')), type: "danger", icon: "fas fa-exclamation-circle" } %} {% endif %}
{% if csrf_token %} {% endif %}
{% if app.request.get('_target_path') is not null %} {% endif %}

{{ 'Forgot your password ?'|trans({}, 'messages') }}

{{ 'Not a member yet ?'|trans({}, 'messages') }} {{ 'Sign up'|trans({}, 'messages') }}

{% endblock %}