datatracker/ietf/templates/registration/logged_out.html
Henrik Levkowetz c1a9ec325f Merged in [9774] from lars@netapp.com:
More HTML fixes.
 - Legacy-Id: 9790
Note: SVN reference [9774] has been migrated to Git commit d9f291d7e75bb33260e986b6eddf7d15b28da305
2015-07-18 13:02:53 +00:00

25 lines
682 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}Signed out{% endblock %}
{% block content %}
{% origin %}
<h1>You have been signed out</h1>
<a class="btn btn-primary" href="/accounts/login/" rel="nofollow">Sign in</a>
{% endblock %}
{% block js %}
{% if request.META.HTTP_REFERER %}
<script>
$(document).ready( function() {
$("#login-back a").text('You will be returned to the previous page in 5 seconds');
setTimeout(function() {
window.location.replace("{{request.META.HTTP_REFERER}}") ;
}, 5000);
});
</script>
{% endif %}
{% endblock %}