How to Customize Text for the Error Prompts on the New Universal Login Template
Last Updated:
Overview
Applies To
- Customize Error Prompts
- Universal Login
Solution
The New Universal Login templates can be customized via the Auth0 Management API.
To Set custom text for a specific prompt, make a PUT request to the following endpoint:
The following example changes the error message displayed when the wrong credentials are entered:
{
"login":{
"wrong-credentials":"You have entered wrong email/password, please try again"
}
}
To revert the change, please send the same request with empty body scripts.
{
}