mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
1d45ad8b2a
Use a base template to create a cohesive feel across the HTML templates provided by Synapse. Adds basic styling to the base template for a more user-friendly look and feel.
25 lines
644 B
HTML
25 lines
644 B
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 %}
|