<section id="form">
<h2>{{ title|trans }}</h2>
{% if sent %}
- <p>{% trans %}Your account has been created{% endtrans %}</p>
+ <p class="notice">{% trans %}Your account has been created{% endtrans %}</p>
{% else %}
- <div>
+ <section>
{{ form_start(form) }}
-
- <header>{{ form_errors(form) }}</header>
-
<section>
{{ form_row(form.mail) }}
<footer style="display:none">
{{ form_rest(form) }}
</footer>
-
{{ form_end(form) }}
- </div>
+ </section>
{% endif %}
</section>
{% endblock %}