64 lines
2.0 KiB
HTML
64 lines
2.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
|
|
|
|
<link href="/auth/assets/public/style.css?2022-02-21T16%3a52%3a49%2b01%3a00" rel="stylesheet">
|
|
<title>Page not found | Corteza</title>
|
|
<style>
|
|
body {
|
|
color: white;
|
|
font-family: 'Poppins', sans-serif;
|
|
text-align: center;
|
|
display: grid;
|
|
grid-template-rows: auto 150px;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
main {
|
|
align-self: center;
|
|
}
|
|
|
|
main h1 {
|
|
font-size: 2500%;
|
|
padding: 0;
|
|
margin: 0;
|
|
margin-bottom: -50px;
|
|
text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
main p {
|
|
font-size: 200%;
|
|
text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
|
|
font-weight: bold;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body style="background: url(/assets/release-background.png) no-repeat top;background-size: cover;background-attachment: fixed;">
|
|
<main>
|
|
<div>
|
|
<h1>404</h1>
|
|
<p>
|
|
It looks like the page you're looking for does not exist.
|
|
</p>
|
|
|
|
<!-- links -->
|
|
</div>
|
|
|
|
</main>
|
|
<footer class="p-5 text-white">
|
|
Access source code on<a href="https://github.com/cortezaproject/" target="_blank" class="text-white ml-2">GitHub</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|