ckbunker/static/html/logout.html
2020-02-14 10:42:15 -05:00

19 lines
354 B
HTML

<html>
<head>
<title>Logged Out</title>
<body>
<pre style="margin: 50px;">
You are logged out.
In 3 seconds this tab will clear itself... But you should still close it.
</pre>
<script>
setTimeout(function() {
history.replaceState(null, '', '/');
window.location.replace('about:blank');
window.location = 'about:blank';
}, 3000);
</script>