Is it possible to create a simple honeypot captcha using form builder? If not it'd make nice a addition to the field type drop down menu!
I want to make a text field that is hidden by CSS, but is validated as an empty field. That way a valid human user will leave it blank (as they can't even see it) and it will validate.
I've tried making a text input field, choosing 'match regular expression' as the field validation, then entering
as the validation regex so that it looks for an empty string... problem is it only runs the validation if you check 'require a response from this field' and so it's checking to make sure the field is NOT empty, and then immediately checking to make sure it IS empty, which obviously doesn't work!
Any ideas?