~cytrogen/masto-fe

ref: 5c79cd6cf732c348b3cf63e9e6c79d189e42d08d masto-fe/public/logout.html -rw-r--r-- 532 bytes
5c79cd6c — Cytrogen [chore] Add .gstack/ to gitignore 6 days 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>