Custom font URL in auth0 customization options

  • We are using the new universal login form, so we wanted to customize the font style by providing a woff2 URL in the Font URL input field, but while providing a woff2 URL it is not changing the font style of the elements present in the form.

  • Dashboard → Branding → Universal Login → Customization Options → Fonts → Font URL field on the right hand side

  • The URL we are using is this → https://s3.ap-southeast-1.amazonaws.com/cms-staging.ayana.com/Ayana_Regular_0b8e30a1dc.woff2

I wanted to know is there any issue with this URL ? if yes what type of woff2/woff URL we should use ?

Folks a gentle reminder , need your help on this ^

Check the CORS configuration : Customize New Universal Login with the No-Code Editor

I added the following CORS config to the bucket and it worked:

[
    {
        "AllowedHeaders": [
            "*"
        ],
        "AllowedMethods": [
            "GET"
        ],
        "AllowedOrigins": [
            "http://*.auth0.com"
        ],
        "ExposeHeaders": []
    }
]
1 Like

Thanks for sharing it with the rest of community!

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