burgerauth/templates/logout.html

17 lines
508 B
HTML
Raw Permalink Normal View History

2024-04-26 21:12:56 +01:00
<!DOCTYPE html>
<html lang="en">
2024-04-26 21:12:56 +01:00
<head>
<title>Log out - {{ .identifier }}</title>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="icon" href="/static/svg/favicon.svg">
</head>
<p>Logging out...</p>
2024-04-26 21:12:56 +01:00
<script>
localStorage.removeItem("DONOTSHARE-secretkey")
localStorage.removeItem("DONOTSHARE-password")
window.location.replace("/login")
2024-04-26 21:12:56 +01:00
</script>