I implemented the forget password functionality for the backend API. From now on user can update their password.
Two endpoints implemented,
/api/user/forget_password : user's email is given as input. an email sent to the given mail address which contains the password reset code
/api/user/reset_password : user gives it's code which she get from the email, and new password. and user's password will be updated.
I implemented the forget password functionality for the backend API. From now on user can update their password. Two endpoints implemented,
/api/user/forget_password : user's email is given as input. an email sent to the given mail address which contains the password reset code
/api/user/reset_password : user gives it's code which she get from the email, and new password. and user's password will be updated.