CINXE.COM
Auth0
<!DOCTYPE html> <html lang="en"> <head> <title>Auth0</title> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link id="favicon" rel="shortcut icon mask-icon" href="https://cdn.auth0.com/quantum-assets/dist/latest/favicons/auth0-favicon-onlight.png" /> <script> (() => { // If `prefers-color-scheme` is supported, subscribe to changes. if (window.matchMedia('(prefers-color-scheme)').media !== 'not all') { const favIcon = document.querySelector('link#favicon'); const darkModeMediaQuery = window.matchMedia('(prefers-color-scheme: dark)'); const onUpdate = () => { if (darkModeMediaQuery.matches) { favIcon.setAttribute('href', 'https://cdn.auth0.com/quantum-assets/dist/latest/favicons/auth0-favicon-ondark.png'); } else { favIcon.setAttribute('href', 'https://cdn.auth0.com/quantum-assets/dist/latest/favicons/auth0-favicon-onlight.png'); } } darkModeMediaQuery.addListener(onUpdate); onUpdate(); } })(); </script> <link rel="stylesheet" type="text/css" href="/css/unsupported-browser.css" /> </head> <body> <div class="unsupported-browser-notice"> <p> We have detected that you are using an outdated and unsupported browser. For security reasons and to enhance your web experience please use a newer browser from the list at: <a target="_blank" href="http://browsehappy.com">http://browsehappy.com</a>. </p> <img class="auth0-badge" src="https://cdn.auth0.com/styleguide/1.0.0/img/badge.png" alt="Auth0" /> </div> </body> </html>