");
$('#resetPassword-submit').attr('disabled', 'disabled');
return false;
}
if (__progress === 0) {
__progress = 1;
$('#resetPassword-submit').html("
Please Wait...");
$(this).ajaxSubmit({
success: function (res) {
__progress = 0;
if (res.match(/error/)) {
$('form .alert').hide();
$('#resetPassword').prepend("
Account not found.
");
$('#resetPassword-submit').html(llbl);
} else {
__reset = 1;
$('form .alert').hide();
$('#resetPassword').prepend("
Please check your inbox.
");
$('#resetPassword-submit').html('
').attr('disabled', 'disabled');
}
}
});
}
return false;
});
$('body').on('click', 'form .alert-danger', function () {
$(this).slideUp();
});
});
}