Hi @sandro ,
Thank you for posting this topic on the Auth0 Community!
This article explains the steps to customize the new UPL page.
To customize the text title on the Login page, I suggest you try the following:
-
Retrieve the template with the following endpoint
curl --request GET
–url ‘https://YOUR_DOMAIN/api/v2/branding/templates/universal-login’
–header ‘authorization: Bearer MGMT_API_ACCESS_TOKEN’ -
This article indicates that key is pageTitle. Search for the “pageTitle” key in the template and make the change.
-
set the new template with this endpoint:
curl --request PUT
–url ‘https://YOUR_DOMAIN/api/v2/branding/templates/universal-login’
–header ‘authorization: Bearer MGMT_API_ACCESS_TOKEN’
–header ‘content-type: text/html’
–data ‘{%- auth0:head -%}{%- auth0:widget -%}’
Hope this is helpful!