{% extends 'base.html.twig' %} {% block title %}Log in!{% endblock %} {% block stylesheets %} {% endblock %} {% block body %}
Me Connecter à Mon Espace Candidat
{% if error %}
Informations de connexion incorrectes
{% endif %} {% if app.user %}
Vous êtes connecté(e) comme {{ app.user.userIdentifier }} Me déconnecter
{% endif %}


S'incrire pour pouvoir Postuler
{{ form_start(registrationForm) }}
{{ form_row(registrationForm.email) }}
{{ form_row(registrationForm.plainPassword, { label: 'Password' }) }}

{{ form_row(registrationForm.prenom) }}
{{ form_row(registrationForm.nom) }}

{{ form_row(registrationForm.Inscription) }}
{{ form_end(registrationForm) }}
{% endblock %}