mirror of
https://github.com/swizzin/swizzin_dashboard.git
synced 2024-11-14 11:04:25 +08:00
46d801d0af
* Add login page * Update * Update imports * It's alive? * Update templates * Fix render template
11 lines
No EOL
294 B
HTML
11 lines
No EOL
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> |