2021-02-01 19:36:04 +01:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>Authentication successful</title>
|
2022-08-11 15:04:20 +02:00
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2021-02-01 19:36:04 +01:00
|
|
|
|
<style type="text/css">
|
|
|
|
|
{% include "sso.css" without context %}
|
|
|
|
|
</style>
|
|
|
|
|
<script>
|
|
|
|
|
if (window.onAuthDone) {
|
|
|
|
|
window.onAuthDone();
|
|
|
|
|
} else if (window.opener && window.opener.postMessage) {
|
|
|
|
|
window.opener.postMessage("authDone", "*");
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
</head>
|
2020-04-17 19:34:55 +02:00
|
|
|
|
<body>
|
2021-02-01 19:36:04 +01:00
|
|
|
|
<header>
|
|
|
|
|
<h1>Thank you</h1>
|
|
|
|
|
<p>
|
|
|
|
|
Now we know it’s you, you can close this window and return to the
|
|
|
|
|
application.
|
|
|
|
|
</p>
|
|
|
|
|
</header>
|
2021-02-03 21:31:23 +01:00
|
|
|
|
{% include "sso_footer.html" without context %}
|
2020-04-17 19:34:55 +02:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|