You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
executaveis/GCI.Maintenance/wwwroot/callback.html

19 lines
530 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Waiting...</title>
</head>
<body>
<script src="js/oidc-client.min.js"></script>
<script>
var mgr = new Oidc.UserManager({ response_mode: 'query', userStore: new Oidc.WebStorageStateStore() }).signinRedirectCallback().then(function (user) {
console.log("signin response success", user);
window.location.href = '../';
}).catch(function (err) {
console.log(err);
});
</script>
</body>
</html>