summary refs log tree commit diff
path: root/synapse/res/templates/sso_auth_success.html
blob: 1ed3967e87fbc3b32355cc31006ad7f3b1443037 (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
<!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>
    <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>