datatracker/ietf/templates/registration/logged_out.html
Lars Eggert c09fd9dad2
chore: Use URL resolver in more places (#4104)
* chore: Use URL resolver more

* Use settings.IDTRACKER_BASE_URL

* More fixes

* Use URL resolver for things under /accounts

* Use URL resolver for things under /stream

* Use URL resolver for things under /iesg

* Use URL resolver for things under /meeting

* Fix bugs

* Use URL resolver for things under /help

* Use URL resolver for things under /ipr

* More changes

* Revert vnu.jar

* Fix typos

* Address review comments by @rjsparks

Co-authored-by: Robert Sparks <rjsparks@nostrum.com>
2022-06-22 14:10:16 -05:00

21 lines
764 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 my-3" href="{% url 'ietf.ietfauth.views.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 %}