You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The password reset feature allows a reset request for any username, including invalid ones, without checking if the username exists.
it is returning res.ok = true for every username
Steps to Reproduce
Go to the password reset page.
Enter a random or invalid username.
Submit the request and see that a success message is shown.
Expected Behavior
The system should validate if the username exists and return an error if it does not.
Actual Behavior
Success message is shown for any username entered, regardless of its validity.
Proposed Fix
Validate username existence properly before processing the request.
The text was updated successfully, but these errors were encountered:
Description
The password reset feature allows a reset request for any username, including invalid ones, without checking if the username exists.
it is returning res.ok = true for every username
Steps to Reproduce
Expected Behavior
Actual Behavior
Proposed Fix
The text was updated successfully, but these errors were encountered: