infopage/public/logout.html

21 lines
493 B
HTML
Raw Permalink Normal View History

2024-02-20 14:55:22 -05:00
<!DOCTYPE html>
<html>
<head>
2024-02-26 17:33:35 -05:00
<title>Log out - InfoPage</title>
2024-02-20 14:55:22 -05:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="/css/base.css">
<script src="/js/base.js"></script>
</head>
<body>
Click <a href="/">here</a> if you aren't redirected shortly...
<script>
localStorage.removeItem("token");
eraseCookie("token");
window.location.href = "/";
</script>
</body>
</html>