From 1fd511432bfd0de73a17df6f1ef93b625ed2de6b Mon Sep 17 00:00:00 2001 From: sayliraut Date: Thu, 6 Jun 2024 13:32:02 +0530 Subject: [PATCH] change --- resources/views/Admin/pages/auth/forgot_password.blade.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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'); }