When using universal login “Classic”, how can we hide terms and conditions?
The showTerms:false property does not work. We have tried adding the property in the root, and nested in the auth.
Passwordless is our only login option enabled.
When using universal login “Classic”, how can we hide terms and conditions?
The showTerms:false property does not work. We have tried adding the property in the root, and nested in the auth.
Passwordless is our only login option enabled.
Hello @alexab,
Could you provide a screen shot so I can be certain on the screen you are talking about?
Thanks!
Good morning,
Unfortunately, I don’t believe this is something you can modify. MFA page has very limited customizations compared to the Login Page. You can view what’s editable here: MFA Theme Language Dictionary
I would recommend sharing this feature request with our product team directly here: https://auth0.com/feedback
I was able to edit the terms and conditions line for my passwordless setup by changing lines 30-34 on the passwordless universal login template. Here’s my example:
languageDictionary = {
title: config.dict.signin.title,
signUpTerms: ‘Terms of Service | Privacy Policy’
};
I think you could set signUpTerms: ‘’ to hide it.
Thanks for sharing that @brooks.sime!