Files
edx-platform/lms/templates/logout.html
Clinton Blackburn 3f19cc0265 Updated logout view
In addition to logging the user out of LMS, the logout view also logs users out of the IDAs to which they previously authenticated.

ECOM-4610
2016-06-15 11:11:49 -04:00

24 lines
836 B
HTML

{% extends "main_django.html" %}
{% load i18n staticfiles %}
{% block title %}{% trans "Signed Out" %} | {{ block.super }}{% endblock %}
{% block body %}
<h1>{% trans "You have signed out." %}</h1>
<p style="text-align: center; margin-bottom: 20px;">
{% blocktrans %}
If you are not redirected within 5 seconds, <a href="{{ target }}">click here to go to the home page</a>.
{% endblocktrans %}
</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 %}