{% extends "layout.html" %} {% load i18n %} {% block title %}{% trans "Contact" %}{% endblock %} {% block content %} {% include "partials/messages.html" %}

{% trans "Contact us" %}

{% trans "Tell us what you need and we’ll reply with next steps and a quote." %}

{% csrf_token %} {{ form.captcha }} {# REQUIRED for reCAPTCHA v3 #} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% include "partials/_field.html" with field=form.name col_class="col-md-6" %} {% include "partials/_field.html" with field=form.email col_class="col-md-6" %} {% include "partials/_field.html" with field=form.phone col_class="col-md-6" %} {% include "partials/_field.html" with field=form.company col_class="col-md-6" %} {% include "partials/_field.html" with field=form.subject col_class="col-12" %} {% include "partials/_field.html" with field=form.message col_class="col-12" rows=5 %} {# captcha field is invisible — no rendering needed #}
{% endblock %}