2017-04-04 07:53:27 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Sign in completed - Titan Embeds</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>Sign in complete! You may now close the window.</p>
|
2020-11-30 14:20:49 +01:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/post-robot/10.0.42/post-robot.min.js" integrity="sha512-8rkatbA3uOONyiRqBiT5dvzaE7hWX6m0SpVr/4rpAxxuZX+Vjuvqp+DSmF1sQX3268hMk8BZxHVRdgHmuoDhXQ==" crossorigin="anonymous"></script>
|
2017-04-04 07:53:27 +02:00
|
|
|
<script>
|
2020-11-30 14:20:49 +01:00
|
|
|
const session = {{ session|tojson|safe }};
|
|
|
|
postRobot
|
|
|
|
.send(window.opener, 'setSession', { session: session })
|
|
|
|
.then(function () {
|
|
|
|
window.close();
|
|
|
|
});
|
2017-04-04 07:53:27 +02:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|