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 () {
jQuery('.woocommerce-Button').attr("disabled", true);
jQuery('.woocommerce-Button').attr("title", "Are You Human 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);
}
});