| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>404 Not Found</title> | |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css"> | |
| <style> | |
| body { font-family: var(--bs-font-monospace); background-color: #f8f9fa; } | |
| .error-container { max-width: 600px; margin-top: 100px; } | |
| .error-code { font-size: 6rem; font-weight: bold; color: #dc3545; } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container error-container text-center"> | |
| <div class="error-code">404</div> | |
| <h2 class="mb-4">File Not Found</h2> | |
| <p class="lead text-muted mb-5"> | |
| <i class="bi bi-search me-2"></i> | |
| The requested file or directory could not be found in the archive. | |
| </p> | |
| <div class="card shadow-sm mb-4 text-start"> | |
| <div class="card-body"> | |
| <small class="text-muted d-block mb-1">Details:</small> | |
| <code>null does not exist</code> | |
| </div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> | |