Added 400 401 403 Error Pages
parent
598b457584
commit
a8cc0a37db
@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html"; charset="utf-8">
|
||||
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
|
||||
<title>Error 400 - Bad Request</title>
|
||||
<style>
|
||||
body { text-align: center; background-color: rgb(250,250,250); }
|
||||
h1 {
|
||||
margin: 20px auto; color: rgb(225,15,15);
|
||||
font-size: 3em; font-family: sans-serif;
|
||||
font-weight: normal; font-style: italic;
|
||||
}
|
||||
a { color: rgb(50,50,200); }
|
||||
p { font-size: 1.1em; font-family: sans-serif; font-weight: light; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Error 400</h1>
|
||||
<p>
|
||||
You (or the application you are using) send an invalid request.
|
||||
<br>
|
||||
If you believe this is an error and it should be fixed, please contact us.
|
||||
<br> <br>
|
||||
Mail: <a href="
|
||||
mailto:webmaster@cubieserver.de
|
||||
&subject=Error 400
|
||||
&body=Bad request on website <insert URL here>
|
||||
">webmaster@cubieserver.de</a>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html"; charset="utf-8">
|
||||
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
|
||||
<title>Error 401 - Unauthorized</title>
|
||||
<style>
|
||||
body { text-align: center; background-color: rgb(250,250,250); }
|
||||
h1 {
|
||||
margin: 20px auto; color: rgb(225,15,15);
|
||||
font-size: 3em; font-family: sans-serif;
|
||||
font-weight: normal; font-style: italic;
|
||||
}
|
||||
a { color: rgb(50,50,200); }
|
||||
p { font-size: 1.1em; font-family: sans-serif; font-weight: light; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Error 401</h1>
|
||||
<p>
|
||||
Sorry, you are not authorized to view this file.
|
||||
<br>
|
||||
If you believe this is an error and it should be fixed, please contact us.
|
||||
<br> <br>
|
||||
Mail: <a href="
|
||||
mailto:webmaster@cubieserver.de
|
||||
&subject=Error 401
|
||||
&body=Not authorized to access website <insert URL here>
|
||||
">webmaster@cubieserver.de</a>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html"; charset="utf-8">
|
||||
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
|
||||
<title>Error 403 - Forbidden</title>
|
||||
<style>
|
||||
body { text-align: center; background-color: rgb(250,250,250); }
|
||||
h1 {
|
||||
margin: 20px auto; color: rgb(225,15,15);
|
||||
font-size: 3em; font-family: sans-serif;
|
||||
font-weight: normal; font-style: italic;
|
||||
}
|
||||
a { color: rgb(50,50,200); }
|
||||
p { font-size: 1.1em; font-family: sans-serif; font-weight: light; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Error 403</h1>
|
||||
<p>
|
||||
Sorry, you are not allowed to view this file.
|
||||
<br>
|
||||
If you believe this is an error and it should be fixed, please contact us.
|
||||
<br> <br>
|
||||
Mail: <a href="
|
||||
mailto:webmaster@cubieserver.de
|
||||
&subject=Error 403
|
||||
&body=Could not access website <insert URL here>
|
||||
">webmaster@cubieserver.de</a>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue