datatracker/ietf/templates/registration/logged_out.html
Lars Eggert cc723ce449 More fixes.
- Legacy-Id: 19899
2022-01-31 19:17:50 +00:00

22 lines
755 B
HTML

{# bs5ok #}
{% 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 my-3" 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 %}