regluit/frontend/templates/registration/logout.html

13 lines
299 B
HTML

{% extends "registration/registration_base.html" %}
{% block title %}Logged out{% endblock %}
{% block doccontent %}
<script type="text/javascript">
window.location.replace("http://{{ request.get_host }}/");
</script>
<div id="registration">
Successfully logged out!
</div>
{% endblock %}