moth/theme/logout.html

24 lines
504 B
HTML
Raw Normal View History

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