negative-captcha
negative-captcha copied to clipboard
A plugin to make the process of creating a negative captcha in Rails much less painful
It appears in #53 I had added a second time `negative_email_field_tag` helper. This PR removes this redefinition.
Could you set up or point to a few sites that already use this in the README.md file so it is easier for the "conversion rates" for new users like...
I'm considering dropping negative_captcha and looking for other solutions as we're getting many false negatives as users auto-fill forms. Before I do so, I'm wondering if anybody else has encountered...
This sounds like a great solution! But I'm wondering about an important issue: How does this impact people using screen readers? Will the readers read aloud a jumbled mess of...
I am writing integration tests. It means I'm trying to send a form without previous page load. Which means I don't have the `hidden` `timestamp` and `spinner` and the negative...
I have multiple forms on a page with negative captcha. `negative_captcha(@captcha)` generates `hidden_field_tag`s with ids 'timestamp' and 'spinner'. Their ids are the same for each form. I think there should...
Hi! I'd like to use #46 in our app but I'm not so into using `master` from github directly. I'd be thrilled if a new version of this gem could...
I could be wrong about this, but I just spent a bit of time looking through the source code here and trying to debug an issue on my production servers,...
Is it possible to enabled or disable various checks? In our case, we have issues with caching. But it would be nice to still use something like honeypots.
I'm using Negative Captcha for a pretty complex form, and had a need to support nested attributes; something in the form of: ``` = form_for user do |f| = f.fields_for...