all repos — web @ d376431e6960d5c37211c014788682798f22c96b

My personal website.

403.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
<!--
SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com>

SPDX-License-Identifier: MIT
-->

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>403 Forbidden</title>
	<style>
		body {
			background-color: #121212;
			max-width: 50rem;
			margin: auto;
			color: var(--accent-color);
			font-family: "Helvetica Neue", sans-serif;
			color: white;
		}
		main {
			margin-left: 10px;
			margin-right: 10px;
		}
		footer {
			position: fixed;
			bottom: 5px;
			font-size: 	.75rem;
		}
		a {
			text-decoration: none;
			color: white;
		}
		h1 {
			font-size: 4em;
		}
		.description {
			margin-top: 4em;
			font-size: 1.25em;
		}

		.explaination {
			font-size: 1em;
		}

		.error-text {
			background-color: #212121;
			font-size: 1.25em;
			border-radius: .25em;
			padding: 1em;
		}

		.button {
			background-color: #212121;
			border-radius: .5em;
			padding: .75em;
			border: solid grey;

		}

		.button-div {
			margin-top: 5rem;
		}

	</style>
</head>
<body>
	<main>
		<h1>Nothing for you to see here 🔒</h1>
		<div class="error">
			<span class="error-text">⚠️ HTTP error: <code>403 Forbidden</code></span>
		</div>

		<div class="description">
			<p>Sorry! You don't have permission to open this page.</p>
		</div>
		<div class="explaination">
			<p>Here's what you can do:</p>
			<ul>
				<li>Check if you have permission to open this page.</li>
				<li>Check if you're authenticated correctly.</li>
			</ul>
		</div>
		<div class="button-div">
			<a class="button" href="/">🏠 Go home</a>
		</div>
	</main>
</body>
</html>