summary refs log tree commit diff
path: root/synapse/res/templates/sso_account_deactivated.html
blob: b85d96cc744e1708f05886cb75eb853ffc5028f9 (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
{% extends "_base.html" %}
{% block title %}SSO account deactivated{% endblock %}

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

{% block body %}
<div class="error_page">
    <header>
        <h1>Your account has been deactivated</h1>
        <p>
            <strong>No account found</strong>
        </p>
        <p>
            Your account might have been deactivated by the server administrator.
            You can either try to create a new account or contact the server’s
            administrator.
        </p>
    </header>
</div>
{% include "sso_footer.html" without context %}
{% endblock %}