28 lines
746 B
HTML
28 lines
746 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/assets/css/style.css">
|
|
<link rel="icon" href="/favicon.png" type="image/png" />
|
|
|
|
<title>401!</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="error">
|
|
<h1>401!</h1>
|
|
<h2>401 - Unauthorized</h2>
|
|
<h2><a href="/index.html">Return to the index!</a></h2>
|
|
<h4><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/401">Learn more about this code.</a> </h4>
|
|
|
|
</div>
|
|
<div class="clouds">
|
|
<img src="/assets/images/clouds.png" alt="Clouds">
|
|
</div>
|
|
|
|
<canvas id="night"></canvas>
|
|
<script src="/assets/js/script.js" defer></script>
|
|
</body>
|
|
</html>
|