scripts-fabq/pages/errors/proxy/501.html

72 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>501 Not Implemented</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
color: #343a40;
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh;
margin: 0;
}
.container {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
}
p {
font-size: 1.2em;
margin-bottom: 30px;
}
.footer {
font-size: 0.9em;
color: #6c757d;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #ffffff;
padding: 10px 0;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
h1 {
font-size: 2em;
}
p {
font-size: 1em;
}
}
</style>
</head>
<body>
<div class="container">
<h1>501 Not Implemented</h1>
<h2>Proxy Error</h2>
<p>
Oops! The server does not support the functionality required to fulfill
the request.
</p>
</div>
<div class="footer">
<p>
Why did the server break up with the developer? It couldn't implement
the changes requested!
</p>
</div>
</body>
</html>