<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Logout | Masto-FE (🦥 flavour)</title>
<script>
const preserveSettings = localStorage.getItem("mastodon-settings");
localStorage.clear();
if (preserveSettings !== null) {
localStorage.setItem("mastodon-settings", preserveSettings);
}
window.location.href = "/login.html";
</script>
</head>
<body>
Clearing local storage and redirecting back to <a href="/login.html">login</a>...
</body>
</html>