- Login check the user data and allow the login
- SignUp check the existing database and update the new user
- Forgot Password creates a temporary token and send a mail to the user to update the password
Base URL
URL - https://forget-password-server.onrender.com/
signup
https://forget-password-server.onrender.com/signup/newuser
Get the user data and store it in the dataBase
Automatically send a email to the user for Authentication
Request Format
{ "email": "okok@gmail.com", "password": "example" }
login
https://forget-password-server.onrender.com/login/user
Get the user data and check the user details in the database
Request Format
{ "email": "oki@gmail.com", "password": "example" }
forgot passoword
https://forget-password-server.onrender.com/forgot
Get the user email and check the user details in the database and send a Password Reset link to the User email
Request Format
{ "email": "oki@gmail.com" }
verify reset page
https://forget-password-server.onrender.com/reset/:id/:token
When the User click the password reset email it will check the data and allow the user to update the new password
update new password
https://forget-password-server.onrender.com/forgot
Request Format
{ "newPassword": "123", "confirmPassword": "123" }