X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/653cfc153b29c84533b00d29a92510339c6358ca..aecd79b0af016492323465e0526dbbbd94178976:/Resources/views/form/contact.html.twig?ds=inline

diff --git a/Resources/views/form/contact.html.twig b/Resources/views/form/contact.html.twig
index cdf7250..dfc46be 100644
--- a/Resources/views/form/contact.html.twig
+++ b/Resources/views/form/contact.html.twig
@@ -1,34 +1,30 @@
-{% extends '@RapsysAir/body.html.twig' %}
+{% extends '@RapsysAir/base.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>{% trans %}Your message has been sent{% endtrans %}</p>
+			<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 %}