-{% extends '@RapsysAir/body.html.twig' %}
+{% extends '@RapsysAir/base.html.twig' %}
{% block content %}
- <section id="form">
+ <article>
<header>
- <h2><a href="{{ path('rapsys_air_contact') }}">{{ page.title }}</a></h2>
- <p>{{ page.description }}</p>
+ <h2>{{ description }}</h2>
</header>
{% if sent %}
<p class="message notice">{% trans %}Your message has been sent{% endtrans %}</p>
{{ form_row(form.message) }}
+ {{ form_row(form.captcha) }}
+
{{ form_row(form.submit) }}
</div>
<footer style="display:none">{{ form_rest(form) }}</footer>
{{ form_end(form) }}
{% endif %}
- </section>
+ </article>
{% endblock %}