{% extends "page-layout.html.twig" %} {% set pageName = 'contributor-login with-section' %} {% set navTitle = "Identification" %} {% block title %} Identification {% endblock %} {# Stylessheets #} {% block page_stylesheets %} {% endblock %} {# BODY CONTENT #} {% block body_content %} {# NOT ACTIVE #} {% if not featureConfig.getActive() %}

Erreur

Désolé, cette fonctionnalité n'est pas activée pour le moment

{# NOT ACTIVE IN IFRAME #} {% elseif app.request.get('iframe') and not featureConfig.getActiveInIframe() %}

Erreur

Désolé, cette fonctionnalité n'est pas disponible à l'intérieur d'une iframe

{% else %}

Identification

{# Only Admins warning #} {% if featureConfig.isOnlyAllowedForAdmin() %}

Attention ! Cette fonctionnalité est reservée aux administrateur

{% endif %} {# Login button #} {% if featureConfig.getAllowRoleUser() or featureConfig.getAllowRoleAdmin() %}
{% set oauthLoginAvailable = config.user.loginWithLesCommuns and oauth_communs != 'disabled' or config.user.loginWithMonPrintemps and oauth_communs != 'disabled' or config.user.loginWithGoogle and oauth_google != 'disabled' or config.user.loginWithFacebook and oauth_facebook != 'disabled' %} {% if oauthLoginAvailable %}

Connectez vous avec votre compte :

{% if config.user.loginWithMonPrintemps and oauth_communs != 'disabled' %} Printemps de l'éducation {% endif %} {% if config.user.loginWithLesCommuns and oauth_communs != 'disabled' %} LesCommuns.org {% endif %} {% if config.user.loginWithMonPrintemps and oauth_communs != 'disabled' %}
{% endif %} {% if config.user.loginWithGoogle and oauth_google != 'disabled' %} Google {% endif %} {% if config.user.loginWithFacebook and oauth_facebook != 'disabled' %} {% endif %}
{% else %} Se Connecter {% endif %}
{% endif %} {% if featureConfig.getAllowRoleUser() %} {# separator #}
ou
{{ form_start(loginForm) }}
{{ form_widget(loginForm.email, {'id': 'inputMail', 'attr': {'class': 'validate required', 'placeholder':'Entrez simplement une adresse mail' }}) }}
{% if emailAlreadyUsed %}
Oups, un compte avec cette adresse email existe déjà ! Connectez-vous ou utilisez une autre adresse !
{% endif %}
{{ form_rest(loginForm) }} {# Fermeture de la balise
du formulaire HTML #} {{ form_end(loginForm) }}
{% endif %}
{% endif %} {# end isActive #} {% endblock %} {% block page_javascripts %} {% endblock %}