summary refs log tree commit diff
path: root/synapse/res/templates/sso_auth_bad_user.html
blob: 69fdcc9ef0b03b9534222eba35ead0cb8b380545 (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
{% block title %}Authentication failed{% endblock %}

{% block header %}
<style type="text/css">
    {% include "sso.css" without context %}
</style>
{% endblock %}

{% block body %}
<div class="error_page">
    <header>
        <h1>That doesn't look right</h1>
        <p>
            <strong>We were unable to validate your {{ server_name }} account</strong>
            via single&nbsp;sign&#8209;on&nbsp;(SSO), because the SSO Identity
            Provider returned different details than when you logged in.
        </p>
        <p>
            Try the operation again, and ensure that you use the same details on
            the Identity Provider as when you log into your account.
        </p>
    </header>
</div>
{% include "sso_footer.html" without context %}
{% endblock %}