Skip to content
Snippets Groups Projects
clear.html 258 B
Newer Older
{% extends 'base.html' %}

{% block content %}

<script>
    // Wipe the local storage
    localStorage.removeItem("persist:root");
    // Redirect
    window.location = '{{ url | safe }}';
Clearing session data and redirecting...

{% endblock %}