Easy way to change text on default login screen?

I don’t want to do any heavy customization. Is there a way to quickly change the text between the logo and the email address field? Don’t like the “welcome” and the fact that the project name shows up!

This can be achieved by using the “Set custom text for a specific prompt” (Auth0 Management API v2) call in the Management API along with the instructions found here (Customize New Universal Login Text Prompts) and here (Customize New Universal Login Text Prompts).

For instance, to change the “Welcome” to “Hello” you will need to call
PUT
/api/v2/prompts/{prompt}/custom-text/{language} with { "login": { "title": "Hello!" } } as the body.

2 Likes

Thanks for sharing that solution Matt!

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.