2023-10-12 18:13:42 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2024-12-19 13:28:35 +00:00
|
|
|
<title>Logout | Masto-FE (🦥 flavour)</title>
|
2023-10-12 18:13:42 +00:00
|
|
|
<script>
|
|
|
|
localStorage.clear();
|
|
|
|
window.location.href = "/login.html";
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
Clearing local storage and redirecting back to <a href="/login.html">login</a>...
|
|
|
|
</body>
|
|
|
|
</html>
|