mirror of
https://github.com/swizzin/swizzin_dashboard.git
synced 2024-11-14 19:14:41 +08:00
11 lines
294 B
HTML
11 lines
294 B
HTML
|
<div>You have been logged out.</div>
|
||
|
|
||
|
<script>
|
||
|
var XMHR = new XMLHttpRequest();
|
||
|
XMHR.open("GET", "{{ url_for('auth') }}", false, "no user", "no password");
|
||
|
XMHR.send();
|
||
|
|
||
|
setTimeout(function () {
|
||
|
window.location.href = "{{ url_for('index') }}";
|
||
|
}, 500);
|
||
|
</script>
|