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.
26 lines
602 B
HTML
26 lines
602 B
HTML
{% block title %}Authentication successful{% endblock %}
|
||
|
||
{% block header %}
|
||
<style type="text/css">
|
||
{% include "sso.css" without context %}
|
||
</style>
|
||
<script>
|
||
if (window.onAuthDone) {
|
||
window.onAuthDone();
|
||
} else if (window.opener && window.opener.postMessage) {
|
||
window.opener.postMessage("authDone", "*");
|
||
}
|
||
</script>
|
||
{% endblock %}
|
||
|
||
{% block body %}
|
||
<header>
|
||
<h1>Thank you</h1>
|
||
<p>
|
||
Now we know it’s you, you can close this window and return to the
|
||
application.
|
||
</p>
|
||
</header>
|
||
{% include "sso_footer.html" without context %}
|
||
{% endblock %}
|