diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-04-01 08:48:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-01 08:48:00 -0400 |
commit | b9930d24a05e47c36845d8607b12a45eea889be0 (patch) | |
tree | d6411d13b03978cc8b16d4daba04d0016cc0aff0 /synapse/res | |
parent | Allow admins to create aliases when they are not in the room (#7191) (diff) | |
download | synapse-b9930d24a05e47c36845d8607b12a45eea889be0.tar.xz |
Support SAML in the user interactive authentication workflow. (#7102)
Diffstat (limited to 'synapse/res')
-rw-r--r-- | synapse/res/templates/sso_auth_confirm.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/synapse/res/templates/sso_auth_confirm.html b/synapse/res/templates/sso_auth_confirm.html new file mode 100644 index 0000000000..0d9de9d465 --- /dev/null +++ b/synapse/res/templates/sso_auth_confirm.html @@ -0,0 +1,14 @@ +<html> +<head> + <title>Authentication</title> +</head> + <body> + <div> + <p> + A client is trying to {{ description | e }}. To confirm this action, + <a href="{{ redirect_url | e }}">re-authenticate with single sign-on</a>. + If you did not expect this, your account may be compromised! + </p> + </div> + </body> +</html> |