16 lines
420 B
HTML
16 lines
420 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>Log out - {{ .identifier }}</title>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<link rel="icon" href="/static/svg/favicon.svg">
|
|
</head>
|
|
<p>Logging out...</p>
|
|
<script>
|
|
localStorage.removeItem("DONOTSHARE-secretkey")
|
|
localStorage.removeItem("DONOTSHARE-password")
|
|
window.location.replace("/login")
|
|
</script>
|