1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-05 03:21:06 -07:00
moth/theme/logout.html
2019-02-22 19:09:38 -07:00

23 lines
504 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>MOTH</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="basic.css">
<script>
sessionStorage.removeItem("id")
</script>
</head>
<body>
<h1 id="title">MOTH</h1>
<section>
<p>Okay, you've been logged out.</p>
</section>
<nav>
<ul>
<li><a href="index.html">Sign In</a></li>
<li><a href="scoreboard.html">Scoreboard</a></li>
</ul>
</nav>
</body>
</html>