1_general_forum/docs/_snippets/contact.md

33 lines
1.3 KiB
Markdown
Raw Normal View History

<form class="contact-form" action="https://api.staticforms.xyz/submit" method="post">
2025-08-01 22:50:14 +00:00
<!-- REQUIRED: Replace this with your StaticForms access key -->
<input type="hidden" name="accessKey" value=sf_ha7960c038fb88i3hbgf0d81>
2025-08-01 22:50:14 +00:00
<!-- Makes the "Reply-To" email address the one the user submitted -->
<input type="hidden" name="replyTo" value="@">
<!-- Sets the subject of the email you will receive -->
<input type="hidden" name="subject" value="Contact Form Submission - Smartup Zero">
2025-08-01 22:50:14 +00:00
<!-- Redirects user to a thank you page after submission -->
<input type="hidden" name="redirectTo" value="https://timeline0.org/0_timeline/thank-you/">
2025-08-01 22:50:14 +00:00
<!-- Anti-spam honeypot field. Do not change. -->
<input type="text" name="honeypot" style="display: none" tabindex="-1" autocomplete="off">
2025-08-01 22:50:14 +00:00
<!-- Form Fields -->
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
2025-08-01 22:50:14 +00:00
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
2025-08-01 22:50:14 +00:00
<label for="message">Message:</label>
<textarea id="message" name="message" rows="8" required></textarea>
2025-08-01 22:50:14 +00:00
<div class="g-recaptcha" data-sitekey=6LcXVZcrAAAAAErKk03ysIccvSose25YnkeiBP-b></div>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<button type="submit">Send Message</button>
</form>
2025-08-01 22:50:14 +00:00