We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Removed ! from `return if !verify_recaptcha` in PasswordsController `check_captcha` method
Updated How To: Use Recaptcha with Devise (markdown)
fix return from check_captcha callback
Add some blank lines for readability
Adjust text for reCAPTCHAv3
Early return on recaptcha verification failure
Do not indent private for consistency
Discard flash since we're rendering instead of redirecting
Update case for reCAPTCHA
Notes for using captcha on login page
Make sure that we show ALL validation errors if captcha fails
correct registration page in view created by rails generate devise:views
Notes
A rewrite to add recaptca in PasswordsController (reset password page)
after verify_recaptcha error message show in view.
This `true` return is not necessary. We can only respond if is not validated by recaptcha
Removed alternative example, because block is yielded after resource is created. So this verification does not prevent creation of resource.
The route has to be updated to override default Devise controller.
add alternative option to verify captcha in controller action
Fixes params method name (sign_up instead of sign_in, since we're in registrations)