recaptchav2
recaptchav2 copied to clipboard
Google's ReCaptcha V2 + V3 for MODX CMS: https://sepiariver.com/modx/recaptchav2-supports-recaptchav3/
Hi, Thansk so much for this plugin, I use it a lot and love it. Recently I have been starting to use BarbaJS combined with MODX, it makes having very...
hCaptcha is a great alternative to Google for captcha. Adding hCaptcha support isn't difficult. I've done it by manually changing the SITE_VERIFY_URL constant to 'https://hcaptcha.com/siteverify' and editing the recaptchav2_html chunk...
Please add support for lexicons or atleast for "score-threshold-not-met". When a user that is not a spam robot incidentally triggers the error "score-threshold-not-met" he does not get any feedback and...
Loading the recaptcha library impacts the google pagespeed. This can be resolved by loading it deferred like this: ``` function onloadCallback() { grecaptcha.ready(function() { grecaptcha.execute('[[+site_key]]', {action: '[[+form_id]]'}).then(function(token) { document.querySelector('[name="[[+token_key]]"]').value =...
According to some reports, if the login and logout resource ID's are the same, user's can't logout if the ReCaptcha image is not present. Maybe before running any tests you...
https://github.com/sepiariver/recaptchav2/blob/master/core/components/recaptchav2/elements/chunks/recaptchav3_html.chunk.tpl The method currently used in the recaptchav3 chunk invokes the challenge immediately on page load. However, the recommendation is to invoke it on submit: https://developers.google.com/recaptcha/docs/v3#programmatically_invoke_the_challenge The main issue is...