14 lines
236 B
HTML
14 lines
236 B
HTML
|
{% extends "registration/_registration_base.html" %}
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<p>You're logged out."</p>
|
||
|
<p>Redirect...</p>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
window.location.href = "/";
|
||
|
</script>
|
||
|
|
||
|
{% endblock %}
|