X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/3ee5f0ad39ff6ff6c196da3678ece94ec2817d45..86e7b4599dfaf730706abc3407c57ef2d98534fc:/Resources/views/form/contact.html.twig

diff --git a/Resources/views/form/contact.html.twig b/Resources/views/form/contact.html.twig
index 957eb1a..da53d04 100644
--- a/Resources/views/form/contact.html.twig
+++ b/Resources/views/form/contact.html.twig
@@ -1,34 +1,30 @@
 {% extends '@RapsysAir/body.html.twig' %}
 {% block content %}
-	<section id="form">
-		<h2><a href="{{ path('rapsys_air_contact') }}">{{ section }}</a></h2>
+	<article>
+		<header>
+			<h2>{{ description }}</h2>
+		</header>
 		{% if sent %}
 			<p class="message notice">{% trans %}Your message has been sent{% endtrans %}</p>
 		{% else %}
-			<div>
-				{{ form_start(form) }}
+			{{ form_start(form) }}
+				<div>
+					{{ form_row(form.subject) }}
 
-					<header>{{ form_errors(form) }}</header>
+					{{ form_row(form.name) }}
 
-					<section>
-						{{ form_row(form.subject) }}
+					{{ form_row(form.mail) }}
 
-						{{ form_row(form.name) }}
+					{{ form_row(form.message) }}
 
-						{{ form_row(form.mail) }}
-
-						{{ form_row(form.message) }}
-					</section>
+					{{ form_row(form.captcha) }}
 
 					{{ form_row(form.submit) }}
+				</div>
 
-					{# Render CSRF token etc .#}
-					<footer style="display:none">
-						{{ form_rest(form) }}
-					</footer>
-
-				{{ form_end(form) }}
-			</div>
+				{# Render CSRF token etc .#}
+				<footer style="display:none">{{ form_rest(form) }}</footer>
+			{{ form_end(form) }}
 		{% endif %}
-	</section>
+	</article>
 {% endblock %}