{% extends "base.html" %} {% load static widget_tweaks %} {% block content %}

Contact Us

Have a question or need help? Send us a message and we'll get back to you.

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% render_field form.name class+="w-full bg-white border-2 border-accent rounded-lg px-4 py-3 text-gray-900 focus:outline-none focus:ring-2 focus:ring-accent focus:border-accent" %} {% if form.name.errors %}

{{ form.name.errors|striptags }}

{% endif %}
{% render_field form.email class+="w-full bg-white border-2 border-accent rounded-lg px-4 py-3 text-gray-900 focus:outline-none focus:ring-2 focus:ring-accent focus:border-accent" %} {% if form.email.errors %}

{{ form.email.errors|striptags }}

{% endif %}
{% render_field form.message class+="w-full bg-white border-2 border-accent rounded-lg px-4 py-3 text-gray-900 focus:outline-none focus:ring-2 focus:ring-accent focus:border-accent" %} {% if form.message.errors %}

{{ form.message.errors|striptags }}

{% endif %}
{% endblock %}