How to hyperlink to my external privacy policy

looking to hyperlink the sign up text as bellow to our web site privacy policy - Can’t find where this is done if someone can kindly point me in the right direction please.

‘By signing up, you agree to our terms of service and privacy policy.’

A complete and definitive answer will depend on the exact scenario, for example, if you’re using the classic universal login experience with Auth0.js then you’re in complete control of the user interface so your would add those links in whatever way you use to build the user interface.

If instead of Auth0.js, you depend on Lock then it should be possible through configuration as shown in this example (lock/modal.html at 2040290dd30f756cb94d97be18dddbdf7190d0db · auth0/lock · GitHub).

   languageDictionary: {
     signUpTerms: "I agree to the <a href='/terms' target='_new'>terms of service</a> and <a href='/privacy' target='_new'>privacy policy</a>."
   },
   mustAcceptTerms: true,
1 Like