Reset Password Form
GET/auth/reset-password
Validates the recovery token and displays the password change form. Typical Flow:
- The user clicks on the link in the recovery email
- The server validates that the token is valid and has not expired
- If valid, it displays the HTML form to set a new password
- If not valid or expired, it shows an error message Validations:
- Token must exist in the database
- Token must not be expired (maximum 1 hour)
- Token must not have been used previously Important Notes:
- This endpoint returns HTML, not JSON
- The form includes client-side validations
- Requires JavaScript enabled in the browser
- The token is consumed upon successful use
Request
Responses
- 200
- 400
HTML Reset Form
Invalid or expired token