Burgernotes/templates/logout.html

16 lines
373 B
HTML
Raw Normal View History

2023-07-21 20:52:06 +01:00
<!DOCTYPE html>
<html>
<head>
2024-02-26 17:25:59 +00:00
<title>Burgernotes</title>
2023-07-21 20:52:06 +01:00
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<head>
Logging out..
<script>
localStorage.removeItem("DONOTSHARE-secretkey")
localStorage.removeItem("DONOTSHARE-password")
2023-08-19 18:25:12 +01:00
localStorage.removeItem("CACHE-username")
2023-07-21 20:52:06 +01:00
window.location.replace("/")
2023-11-03 20:24:40 +00:00
</script>