// Hello coders , follow previous post for product architecture - Today we are going to see how to reset password & update it in mysql database- ============== follow previous post for helper files & folders ==== //================= app.js ============== //to Generate OTP - var otp; function setValue() { otp = Math.random(); otp = otp * 1000000; otp = parseInt(otp); console.log(otp); } function getValue() { console.log(otp); // yup, it's "test" } //======= Forgot Button on Login Page- will redirect to /forgotPassord app.post("/resetpasswordOTP",(req,res)=>{ //res.redirect("/forgotpassword"); res.status(200).json({success:"Enter verified email"}); }) //=======...