1
Add a hidden field
2
Handle flagged submissions
If the honeypot field has a value, treat the submission as spam in your workflow or remove it from the dashboard.
For stronger protection, combine honeypots with CAPTCHA or rate limiting at the edge.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Add a hidden field to catch basic bots.
Add a hidden field
<form action="https://formbase.dev/s/YOUR_FORM_ID" method="POST">
<input name="name" type="text" required />
<input name="email" type="email" required />
<div style="position:absolute; left:-10000px;" aria-hidden="true">
<label for="company">Company</label>
<input id="company" name="company" type="text" tabindex="-1" autocomplete="off" />
</div>
<button type="submit">Send</button>
</form>
Handle flagged submissions