~cytrogen/masto-fe

ref: 1ff70886a12e05cdc2f0789e78dcdabccaef6d18 masto-fe/public/logout.html -rw-r--r-- 532 bytes
1ff70886 — Zoë Bijl [build] upgrade eslint to 9.37.0 (#88) 6 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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>