Add honeypot field to Formspree forms to prevent spam - #7
Open
jmiranda wants to merge 1 commit into
Open
Conversation
Adds a visually-hidden _gotcha field to the quote, signup, tutorials, and implementation forms. Formspree silently discards any submission where this field is filled, which bots tend to do. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
✅ Deploy Preview for openboxes ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Adds a visually-hidden honeypot (
_gotcha) field to all four Formspree-backed forms to cut down on bot spam submissions._gotchais Formspree's built-in honeypot field name: real users never see or fill it, but bots tend to auto-fill every input, and Formspree silently discards any submission where it's populated. No server-side config or third-party scripts (e.g. reCAPTCHA) required.Forms updated
layouts/partials/quote.html— quote requestlayouts/partials/signup.html— services signuplayouts/partials/tutorials.html— tutorials emaillayouts/partials/users.html— implementation formEach honeypot is wrapped in an off-screen container (
position:absolute; left:-9999px) witharia-hidden="true", and the input usestabindex="-1"/autocomplete="off"so it's skipped by keyboard navigation, screen readers, and autofill.Testing
_gotcharenders inpublic/{quote,signup,tutorials,users}/index.html.🤖 Generated with Claude Code