{% extends 'base.html.twig' %} {% block localstyle %} .wrap { height: 130px; position: relative; margin: 5px; } h2.centre-line { text-align: center; position: absolute; top: 50%; left: 50%; width: 100%; transform: translate(-50%, -50%); } h2.centre-line:before { content: ""; position: absolute; width: 100%; height: 1px; top: 50%; left: 0; z-index: -1; background: gray; } h2.centre-line span { padding: 1rem; display: inline-block; background: white; } {% endblock %} {% block body %} {{ form_start(form) }}

Ninesurvey

{{ survey.title }}

{% if app.session.flashbag.has('error') %}
Erreur
{% for flashMessage in app.session.flashbag.get('error') %} {{ flashMessage|raw }}
{% endfor %}
{% endif %} {% if app.session.flashbag.has('notice') %}
Information
{% for flashMessage in app.session.flashbag.get('notice') %} {{ flashMessage|raw }}
{% endfor %}
{% endif %} Avant de pouvoir répondre au sondage.
Merci

d'utiliser votre compte
Connexion

OU

de compléter les inforamtions suivantes {{ form_row(form.email) }} {{ form_row(form.displayname) }} {{ form_widget(form.submit) }}
{{ form_end(form) }} {% endblock %} {% block localjavascript %} $(document).ready(function() { $("#command").focus(); }); {% endblock %}