mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 05:23:14 -08:00
14 lines
330 B
HTML
14 lines
330 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>Logout | Masto-FE standalone</title>
|
||
|
|
<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>
|