Files
fte-Homepage/themes/tella/layouts/shortcodes/contact-form.html
Fabian T. Ecke 82ab00f707
Some checks failed
Website / Website veröffentlichen (push) Failing after 4s
themes/tella/layouts/shortcodes/contact-form.html aktualisiert
2026-01-14 00:29:13 +01:00

15 lines
1.2 KiB
HTML

<form name="contact" action="https://getform.io/" method="POST">
<div class="input">
<input type="text" placeholder="Name" name="name" class="text-lightgray-custom p-4 bg-gray-200 border border-gray-200 focus:outline-none focus:bg-white focus:border-gray-500" required>
</div>
<div class="input">
<input type="text" placeholder="Email" name="mail" class="text-lightgray-custom p-4 bg-gray-200 border border-gray-200 focus:outline-none focus:bg-white focus:border-gray-500" required>
</div>
<div class="input">
<input type="text" placeholder="Betreff" name="title" class="text-lightgray-custom p-4 bg-gray-200 border border-gray-200 focus:outline-none focus:bg-white focus:border-gray-500" required>
</div>
<div class="input">
<textarea rows="5" cols="30" placeholder="Nachricht" name="message" class="text-lightgray-custom p-4 bg-gray-200 border border-gray-200 focus:outline-none focus:bg-white focus:border-gray-500" required></textarea>
</div>
<input type="submit" value="Absenden" class="px-8 py-2 transition-400 bg-darker-green-custom btn-custom text-white cursor-pointer transition-colors hover:opacity-80 hover:text-white">
</form>