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