2022-11-16 12:14:38 +01:00
|
|
|
|
{% extends "_base.html" %}
|
2022-10-21 19:44:00 +02:00
|
|
|
|
{% block title %}Authentication successful{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
|
<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>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
|
<header>
|
|
|
|
|
<h1>Thank you</h1>
|
|
|
|
|
<p>
|
|
|
|
|
Now we know it’s you, you can close this window and return to the
|
|
|
|
|
application.
|
|
|
|
|
</p>
|
|
|
|
|
</header>
|
|
|
|
|
{% include "sso_footer.html" without context %}
|
|
|
|
|
{% endblock %}
|