17 lines
449 B
HTML
17 lines
449 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>Burgerauth</title>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<link rel="icon" href="/static/svg/favicon.svg">
|
|
</head>
|
|
<p>Logging out...</p>
|
|
<script>
|
|
localStorage.removeItem("DONOTSHARE-secretkey")
|
|
localStorage.removeItem("DONOTSHARE-password")
|
|
localStorage.removeItem("CACHE-username")
|
|
window.location.replace("/login")
|
|
</script>
|