init
This commit is contained in:
commit
1e11c8ca5e
12 changed files with 579 additions and 0 deletions
83
site/404.html
Normal file
83
site/404.html
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>404 - Page Not Found</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
text-align: center;
|
||||
background-color: #f8f9fa;
|
||||
margin: 0;
|
||||
padding: 50px;
|
||||
}
|
||||
.error-container {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background: white;
|
||||
padding: 40px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||||
}
|
||||
.error-code {
|
||||
font-size: 72px;
|
||||
font-weight: bold;
|
||||
color: #ffc107;
|
||||
margin: 0;
|
||||
}
|
||||
.error-message {
|
||||
font-size: 24px;
|
||||
color: #6c757d;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.error-description {
|
||||
font-size: 16px;
|
||||
color: #495057;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.nav-links {
|
||||
margin-top: 30px;
|
||||
}
|
||||
.nav-links a {
|
||||
display: inline-block;
|
||||
margin: 0 10px;
|
||||
padding: 10px 20px;
|
||||
background-color: #007bff;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 5px;
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
.nav-links a:hover {
|
||||
background-color: #0056b3;
|
||||
}
|
||||
.search-suggestion {
|
||||
margin: 20px 0;
|
||||
padding: 15px;
|
||||
background-color: #e9ecef;
|
||||
border-radius: 5px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="error-container">
|
||||
<h1 class="error-code">404</h1>
|
||||
<h2 class="error-message">Page Not Found</h2>
|
||||
<p class="error-description">
|
||||
The page you are looking for might have been removed, had its name changed,
|
||||
or is temporarily unavailable.
|
||||
</p>
|
||||
<div class="search-suggestion">
|
||||
<strong>Available pages:</strong><br>
|
||||
<a href="/">Home</a> |
|
||||
<a href="/admin.html">Admin Page</a> |
|
||||
<a href="/login.html">Login</a>
|
||||
</div>
|
||||
<div class="nav-links">
|
||||
<a href="/">Go Home</a>
|
||||
<a href="/login.html">Login</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue