Open
Description
Bug description
Whenever we are trying to reset password, and then entering wrong email address, it should response that the email address is incorrect. But instead, it is always refreshing the captcha, so user frustrates by entering captchas.
Reproduction steps
- Proceed to API Manager
- Complete the Sign up with a new email address with activating from email
- Proceed to API Manager
- Click 'forgot password'
- Enter email address (may be wrong email address)
- Enter Captcha
- Press Request Reset
- Nothing Happens - Captcha forces user to keep entering - and no email with reset instructions is sent....
Expected behavior
It must inform user that entered email address is not valid. If captcha is not valid then also it should be informed.
Environment
- Operating system: Windows
- Browser: mostly all - [Google Chrome, Firefox]
- Version: not dependent to any version
Additional context
I can see the validation message is coming from API like below but it is not showing in Validation summary.
{
"code": "ValidationError",
"message": "Captcha validation failed.",
"details": [
{
"target": "Captcha",
"message": "Text entered doesn't match text on the picture. Please try again."
}
]
}
{
"code": "ValidationError",
"message": "One or more fields contain incorrect values:",
"details": [
{
"code": "ResourceNotFound",
"target": "to",
"message": "User not found"
}
]
}