Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.

function wpcaptcha_captcha(){
grecaptcha.execute("6Ldhvh4sAAAAAPSFoKL_gGf1BwabNtIPZ1zbhV5K", {action: "submit"}).then(function(token) {
var captchas = document.querySelectorAll(".agr-recaptcha-response");
captchas.forEach(function(captcha) {
captcha.value = token;
});
});
}

jQuery("form.woocommerce-checkout").on("submit", function(){
setTimeout(function(){
wpcaptcha_captcha();
},100);
});