diff --git a/resources/views/Admin/pages/auth/forgot_password.blade.php b/resources/views/Admin/pages/auth/forgot_password.blade.php index 0494643..6047c12 100644 --- a/resources/views/Admin/pages/auth/forgot_password.blade.php +++ b/resources/views/Admin/pages/auth/forgot_password.blade.php @@ -70,10 +70,9 @@ $(document).on("click", "#forgot_password_btn", function (e) { if (response.status_code == 200) { form.reset(); toastr.success('Otp send it your mail id please check'); - setTimeout(function () { -// toastr.info('Please check your email to reset your password. The link is valid for 5 minutes.'); + setTimeout(function() { window.location.href = base_url + "/otp"; - }, 1000); + }, 2000); }else if (response.status == 404) { toastr.error('This email id is not exits'); }