2021-02-01 13:36:04 -05:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>Authentication successful</title>
|
|
|
|
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
|
|
|
<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 13:34:55 -04:00
|
|
|
|
<body>
|
2021-02-01 13:36:04 -05: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 15:31:23 -05:00
|
|
|
|
{% include "sso_footer.html" without context %}
|
2020-04-17 13:34:55 -04:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|