Welcome to the Auth0 Community!
To hide the Forgot Password from the New Universal Login, you will need to call the Management API’s Update a user endpoint and pass in the disable_self_service_change_password: true
option in the request.
Doing so will remove the forgot password link from the Universal Login page.
Let me also mention that when using the options
parameter in the request, the whole options
object will be overridden, so you will want to ensure that all parameters are present.
For example:
{
"options": {
"disable_self_service_change_password": true,
//rest of options object
}
}
And if you wish to revert your changes, you can pass the same body and set disable_self_service_change_password: null
instead of true.
{
"options": {
"disable_self_service_change_password": null,
//rest of options object
}
}
I hope this helps!
Please let me know if there’s anything else I can do to help.
Thanks,
Rueben