summaryrefslogtreecommitdiff
path: root/synapse/res/templates/sso_error.html
blob: 43a211386beccb668934f2653d20cb52d2ecb927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>SSO error</title>
</head>
<body>
    <p>Oops! Something went wrong during authentication.</p>
    <p>
        Try logging in again from your Matrix client and if the problem persists
        please contact the server's administrator.
    </p>
    <p>Error: <code>{{ error }}</code></p>
    {% if error_description %}
    <pre><code>{{ error_description }}</code></pre>
    {% endif %}
</body>
</html>