summary refs log tree commit diff
path: root/synapse/res/templates/sso_auth_success.html
blob: 4898af6011f67eb19be92996ebf9df2f3d72e490 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Authentication successful</title>
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <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>
    <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 %}
    </body>
</html>