{% extends 'user/message.html' %}
{% block heading %}Logout{% endblock %}
{% block message %}
Logout successfully. Return to the login later.
<script>
  setTimeout(function() { window.location = '/'; }, 2000);
</script>
{% endblock %}