Files
website-v2/templates/includes/_contact_form.html
2023-05-01 18:37:36 -04:00

28 lines
1.0 KiB
HTML

<form action="" method="POST">
<div class="space-y-5">
<div class="flex space-x-3 w-full">
<div class="w-1/2">
{% include "includes/_form_input.html" with form=form field=form.first_name %}
</div>
<div class="w-1/2">
{% include "includes/_form_input.html" with form=form field=form.last_name %}
</div>
</div>
<div class="w-full">
{% include "includes/_form_input.html" with form=form field=form.email %}
</div>
<div class="w-full">
{% include "includes/_form_input.html" with form=form field=form.phone_number %}
</div>
<div class="w-full">
{% include "includes/_form_input.html" with form=form field=form.topic %}
</div>
<div class="w-full">
{% include "includes/_form_input.html" with form=form field=form.message %}
</div>
<div class="mt-3 w-full">
<button type="submit" class="py-2 px-3 text-sm text-white uppercase rounded-lg border bg-orange border-orange dark:bg-charcoal dark:text-orange">Submit</button>
</div>
</div>
</form>