diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-04-17 13:34:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-17 13:34:55 -0400 |
commit | 054c231e58eb8a93ff04a81341190aa3b6bcb9f7 (patch) | |
tree | 6dd6cea76eba8764b1a9a38974b67577a5081dc1 /synapse/res | |
parent | Added explicit Python build tools to snap requirements (#7213) (diff) | |
download | synapse-054c231e58eb8a93ff04a81341190aa3b6bcb9f7.tar.xz |
Use a template for the SSO success page to allow for customization. (#7279)
Diffstat (limited to 'synapse/res')
-rw-r--r-- | synapse/res/templates/sso_auth_success.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/synapse/res/templates/sso_auth_success.html b/synapse/res/templates/sso_auth_success.html new file mode 100644 index 0000000000..03f1419467 --- /dev/null +++ b/synapse/res/templates/sso_auth_success.html @@ -0,0 +1,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> |