Piyush Gangrade
Piyush Gangrade
PR #39 Add verifyOTP.jsx for sending and verifying OTP, and update Login.jsx and Signup.jsx accordingly. Details: After users log in or sign up, they will navigate to the 'verify' route...
### Describe the feature Create routes for user signup and login to handle data storage in MongoDB and user authentication. The signup route will validate input, hash passwords, and store...
Addition: 1. ForgetPassword.jsx for enter an email to reset a password 2. ResetPassword.js for check token is valid or not and reset a password if token is valid. Updates: -...
Improve user authentication security by using a regex to enforce strong password rules. This will help users create passwords that are hard to crack and meet security standards
Add a 'forgot password' feature on the login page so that users who forget their passwords can reset them @SamarthKadam please assign this to me under GSSoC'24 
Details: When clicking "Forgot Password," there is no response. Solution: When the "Forgot Password" link is clicked on the sign-in page, it should open another page where the user can...
Issue #50 and #79: Duplicate Issues Updation: 1. Modify User Schema: File: ./node_server/models/User.model.js Action: Add two new fields forget_password_token and forget_password_expiry to the User schema. 2. Update Authentication Controller: File:...