26 lines
1.0 KiB
HTML
26 lines
1.0 KiB
HTML
{% extends "main_django.html" %}
|
|
{% load i18n staticfiles %}
|
|
{% load django_markup %}
|
|
|
|
{% block title %}{% trans "Signed Out" as tmsg %}{{ tmsg | force_escape }} | {{ block.super }}{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>{% trans "You have signed out." as tmsg %}{{ tmsg | force_escape }}</h1>
|
|
|
|
<p style="text-align: center; margin-bottom: 20px;">
|
|
{% blocktrans trimmed asvar signout_msg1 %}
|
|
If you are not redirected within 5 seconds, {start_anchor}click here to go to the home page{end_anchor}.
|
|
{% endblocktrans %}
|
|
{% interpolate_html signout_msg1 start_anchor='<a href="{{ target }}">'|safe end_anchor='</a>'|safe %}
|
|
</p>
|
|
|
|
<div id="iframeContainer" style="visibility: hidden" data-redirect-url="{{ target }}">
|
|
{% for uri in logout_uris %}
|
|
<iframe src="{{ uri }}"></iframe>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<script type="text/javascript" src="{% static 'js/jquery.allLoaded.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'js/logout.js' %}"></script>
|
|
{% endblock body %}
|