mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 17:42:08 +00:00
28 lines
1.0 KiB
HTML
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>
|