Added error pages
This commit is contained in:
parent
cc94c76c71
commit
afefccff06
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<link rel="icon" href="/static/svg/ailur.svg">
|
||||
<title>Error 403</title>
|
||||
<link rel="stylesheet" href="/static/css/error.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
<div class="bar">
|
||||
<img src="/static/svg/ailur.svg" alt="The Ailur logo">
|
||||
<div class="links">
|
||||
<a href="/">Home</a>
|
||||
<a href="/library">Library</a>
|
||||
<a href="/about">About</a>
|
||||
<a href="/enterprise">Enterprise</a>
|
||||
<a href="/consulting">Consulting</a>
|
||||
<a href="/contact">Contact</a>
|
||||
<a href="/donate">Donate</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="blockContainer">
|
||||
<p class="subtext">Uh oh, a [f]ailur!</p>
|
||||
<h1>403 - Permission denied</h1>
|
||||
<a href="/">Return to home</a>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<img src="/static/svg/ailur.svg" alt="The Ailur logo">
|
||||
<p class="title">The Ailur Project</p>
|
||||
<a href="/about">About us</a>
|
||||
<a href="/library">Library</a>
|
||||
<a href="/enterprise">Enterprise</a>
|
||||
<a href="/consulting">Consulting</a>
|
||||
<a href="/donate">Donate ❤️</a>
|
||||
<br>
|
||||
<p>This page does not sell your data</p>
|
||||
<br>
|
||||
<p class="disclaimer">
|
||||
Copyright © 2024 Arzumify | GPLv3 or Later | Powered by Fulgens
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<link rel="icon" href="/static/svg/ailur.svg">
|
||||
<title>Error 404</title>
|
||||
<link rel="stylesheet" href="/static/css/error.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
<div class="bar">
|
||||
<img src="/static/svg/ailur.svg" alt="The Ailur logo">
|
||||
<div class="links">
|
||||
<a href="/">Home</a>
|
||||
<a href="/library">Library</a>
|
||||
<a href="/about">About</a>
|
||||
<a href="/enterprise">Enterprise</a>
|
||||
<a href="/consulting">Consulting</a>
|
||||
<a href="/contact">Contact</a>
|
||||
<a href="/donate">Donate</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="blockContainer">
|
||||
<p class="subtext">Uh oh, a [f]ailur!</p>
|
||||
<h1>404 - Page not found</h1>
|
||||
<a href="/">Return to home</a>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<img src="/static/svg/ailur.svg" alt="The Ailur logo">
|
||||
<p class="title">The Ailur Project</p>
|
||||
<a href="/about">About us</a>
|
||||
<a href="/library">Library</a>
|
||||
<a href="/enterprise">Enterprise</a>
|
||||
<a href="/consulting">Consulting</a>
|
||||
<a href="/donate">Donate ❤️</a>
|
||||
<br>
|
||||
<p>This page does not sell your data</p>
|
||||
<br>
|
||||
<p class="disclaimer">
|
||||
Copyright © 2024 Arzumify | GPLv3 or Later | Powered by Fulgens
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,15 @@
|
|||
@import "common.css";
|
||||
|
||||
body {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.blockContainer h1 {
|
||||
font-size: 60px;
|
||||
margin: 0 0 0 0;
|
||||
}
|
||||
|
||||
.blockContainer a {
|
||||
font-size: 18px;
|
||||
margin-top: 20px;
|
||||
}
|
Loading…
Reference in New Issue