<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>

</body>
<script src="//cdn.auth0.com/js/auth0/9.5.1/auth0.min.js"></script>
<script type="text/javascript">
    var auth0js = new auth0.WebAuth({
        domain: 'cobblestone.eu.auth0.com',
        clientID: 'O3PDYiNzsX0Ed2Q2wtx9D3nqjagEYy8s',
        audience: 'usercloud',
        scope: 'openid email profile',
        redirectUri: 'https://approval.cobblestone.dk/auth0/callback'
    });

    auth0js.checkSession({
        responseType: 'token'
    }, function (err, result) {
        auth0js.authorize(
            {
                responseType: 'code'
            }
        );
    });
</script>
</html>
