26 lines
739 B
HTML
26 lines
739 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>Burgernotes</title>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||
|
<link rel="icon" href="../static/svg/favicon.svg">
|
||
|
<script>
|
||
|
if (window.location.href.endsWith('/index.html')) {
|
||
|
if (window.location.origin !== null) {
|
||
|
var currentUrl = window.location.href;
|
||
|
var newUrl = currentUrl.replace('/index.html', '');
|
||
|
window.location.href = newUrl;
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<head>
|
||
|
Logging out..
|
||
|
<script>
|
||
|
localStorage.removeItem("DONOTSHARE-secretkey")
|
||
|
localStorage.removeItem("DONOTSHARE-password")
|
||
|
localStorage.removeItem("CACHE-username")
|
||
|
window.location.replace("../login")
|
||
|
</script>
|