Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.
var capchaChecked = false;
var myCaptcha = null;
function intval_woo_forgotpass_ready(f) {
/in/.test(document.readyState) ? setTimeout('intval_woo_forgotpass_ready(' + f + ')', 9) : f()
}
intval_woo_forgotpass_ready(function () {
if (typeof (window.grecaptcha) !== 'undefined' && typeof (grecaptcha.enterprise) !== 'undefined' && typeof (grecaptcha.enterprise.render) !== 'undefined' && myCaptcha === null) {
i13renderRe_FP_CaptchaV2();
}
else{
jQuery.getScript("https://www.google.com/recaptcha/enterprise.js?from=i13_recaptcha&hl=en&onload=i13renderRe_FP_CaptchaV2", function() {
});
}
jQuery('.woocommerce-Button').attr("disabled", true);
jQuery('.woocommerce-Button').attr("title", "Captcha is a required field.");
});
var verifyCallback_woo_lostpassword = function(response) {
if (response.length !== 0){
jQuery('.woocommerce-Button').removeAttr("title");
jQuery('.woocommerce-Button').attr("disabled", false);
capchaChecked = true;
if (typeof woo_lostpassword_captcha_verified === "function") {
woo_lostpassword_captcha_verified(response);
}
}
};
jQuery('#password_1').on('keyup', function(){
if (jQuery(".woocommerce-Button").is(":disabled") || capchaChecked == false){
setTimeout(function(){ jQuery(".woocommerce-Button").attr("disabled", true); }, 500);
}
});
jQuery('#password_1').on('blur', function(){
if (jQuery(".woocommerce-Button").is(":disabled") || capchaChecked == false){
setTimeout(function(){ jQuery(".woocommerce-Button").attr("disabled", true); }, 500);
}
});
jQuery('#password_2').on('keyup', function(){
if (jQuery(".woocommerce-Button").is(":disabled") || capchaChecked == false){
setTimeout(function(){ jQuery("#place_order").attr("disabled", true); }, 500);
}
});
jQuery('#password_2').on('blur', function(){
if (jQuery(".woocommerce-Button").is(":disabled") || capchaChecked == false){
setTimeout(function(){ jQuery("#place_order").attr("disabled", true); }, 500);
}
});
function i13renderRe_FP_CaptchaV2(){
try{
myCaptcha_fp = grecaptcha.enterprise.render('g-recaptcha-lostpassword-i13', {
'sitekey': '6Ld_ldMrAAAAAKB1dXfmGxM9TuqNyK_svjGwwCx_',
'callback' : verifyCallback_woo_lostpassword
});
} catch (error){}
}