masto-fe-standalone/public/logout.html

14 lines
334 B
HTML
Raw Permalink Normal View History

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>