summary refs log tree commit diff
path: root/synapse/res/templates/sso_auth_success.html
blob: 03f14194673a559954c3587e34b0286b1c77ae8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
    <title>Authentication Successful</title>
    <script>
    if (window.onAuthDone) {
        window.onAuthDone();
    } else if (window.opener && window.opener.postMessage) {
        window.opener.postMessage("authDone", "*");
    }
    </script>
</head>
    <body>
        <div>
            <p>Thank you</p>
            <p>You may now close this window and return to the application</p>
        </div>
    </body>
</html>