How do I change the Subtitle when using Lock.js and custom login?

I have the following…

How do I change the Default App text?

Hi @jgleason,

Thanks for reaching out to the Auth0 Community!

On the Universal Login Page, you can change the title of the application by modifying the languageDictionary object. See here.

Here is an example as well:

var lock = new Auth0Lock(config.clientID, config.auth0Domain, {
  languageDictionary:{
    title:"YOUR_APP_NAME"
  },
  ...
});

You may also find the full list of languageDictionary values useful: https://github.com/auth0/lock/blob/master/src/i18n/en.js

Hoped this helps! Please let me know if you have any questions.

Thank you.

2 Likes

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