Technical Documentation
Spam Protection & Honeypots
Prevent form spam with invisible honeypot fields.
Direct AnswerGEO / AEO Extractable
What is the core specification for spam protection & honeypots?
Add a hidden input field with `name="_gotcha"` to your HTML form. Automated spam bots will fill this field, triggering silent rejection while legitimate user submissions pass through.
// Example Code
<input type="text" name="_gotcha" style="display:none !important" tabindex="-1" autocomplete="off" />