absolute paths to specific errorpages directory

This commit is contained in:
Asif Bacchus 2019-06-22 07:34:16 -06:00
parent 7edeb9fcf2
commit 7ea6008735
6 changed files with 12 additions and 12 deletions

View File

@ -5,13 +5,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Error 404 - Bad Request</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="/errorpages/styles.css">
</head>
<body>
<h1>You want me to do what now?</h1>
<div class="spacer"></div>
<p>I don't think you really want me to do whatever it was you were asking... How about you think that over and get back to me?</p>
<img src="images/monster_unimpressed.svg" alt="unimpressed monster">
<img src="/errorpages/images/monster_unimpressed.svg" alt="unimpressed monster">
<p class="instructions">Please verify you have the right address and you are submitting all information correctly. If you came here from another page, there might be something wrong with the way that page is coded or you screwed up filling something out. (error 400)</p>
<div class="spacer"></div>
<footer>

View File

@ -5,13 +5,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Error 401 - Unauthorized</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="/errorpages/styles.css">
</head>
<body>
<h1>Hey, nice try!</h1>
<div class="spacer"></div>
<p>I'm not going to tell anyone, but I think we both know you're not allowed to be here, right?</p>
<img src="images/monster_angry.svg" alt="angry monster">
<img src="/errorpages/images/monster_angry.svg" alt="angry monster">
<p class="instructions">You're not authorized to view this content. You probably supplied the wrong credentials, please try again. (error 401)</p>
<div class="spacer"></div>
<footer>

View File

@ -5,13 +5,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Error 403 - Forbidden</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="/errorpages/styles.css">
</head>
<body>
<h1>Whoa! Get out of here!</h1>
<div class="spacer"></div>
<p>You're not allowed to be here, turn around and head back to where you came from!</p>
<img src="images/monster_angry.svg" alt="angry monster">
<img src="/errorpages/images/monster_angry.svg" alt="angry monster">
<p class="instructions">You're not authorized to view this content. This is NOT a credential error, you're just not allowed to be here. (error 403)</p>
<div class="spacer"></div>
<footer>

View File

@ -5,13 +5,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Error 404 - Not Found</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="/errorpages/styles.css">
</head>
<body>
<h1>Are you lost?</h1>
<div class="spacer"></div>
<p>I looked all over but couldn't find what you wanted! I promise I tried my best!</p>
<img src="images/monster_confused.svg" alt="confused monster">
<img src="/errorpages/images/monster_confused.svg" alt="confused monster">
<p class="instructions">Please make sure you typed the right address and try again. (error 404)</p>
<div class="spacer"></div>
<footer>

View File

@ -5,14 +5,14 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Backup in progress - Unavailable (503)</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="/errorpages/styles.css">
</head>
<body>
<h1>Bad timing!</h1>
<div class="spacer"></div>
<p>Seems you're trying to access me during my backup window. Don't worry though, I should be up and running again very soon.</p>
<p>My average backup window is pretty quick and I'm quite busy during that time copying super-important files to my secure hiding place so they stay safe in-case anything ever happens to me!</p>
<img src="images/monster_flying.svg" alt="flying monster">
<img src="/errorpages/images/monster_flying.svg" alt="flying monster">
<p class="instructions">Sorry for the delay. Please try again soon. (error 503)</p>
<div class="spacer"></div>
<footer>

View File

@ -5,13 +5,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Error 50x - Server Misconfiguration</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="/errorpages/styles.css">
</head>
<body>
<h1>Whoops! My bad!</h1>
<div class="spacer"></div>
<p>Seems there's something wrong with me... my configuration is screwy! I'm sure my admin is looking into the issue and will have me up and running again in no time. Sorry about this.</p>
<img src="images/monster_panic.svg" alt="panicked monster">
<img src="/errorpages/images/monster_panic.svg" alt="panicked monster">
<p class="instructions">This is often a temporary condition. Please try again later. (error 50x)</p>
<div class="spacer"></div>
<footer>