gentelella
Version:
Gentelella Admin is a free to use Bootstrap admin template
125 lines (113 loc) • 4.74 kB
HTML
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="images/favicon.ico" type="image/ico" />
<title>404 - Page Not Found | Gentelella</title>
<!-- Vite Entry Point - will bundle all styles -->
<script type="module" src="/src/main-minimal.js"></script>
<style>
.error-bg {
background: linear-gradient(135deg, #2A3F54 0%, #34495e 100%);
min-height: 100vh;
}
.brand-logo {
color: #1ABB9C;
border: 2px solid #1ABB9C;
padding: 8px 10px;
border-radius: 50%;
font-size: 1.2rem;
margin-right: 10px;
}
.search-input-group .form-control,
.search-input-group .btn {
height: 38px;
line-height: 1.5;
}
.search-input-group .form-control {
border-radius: 0.375rem 0 0 0.375rem;
}
.search-input-group .btn {
border-radius: 0 0.375rem 0.375rem 0;
border-color: rgb(222, 226, 230) ;
}
.search-input-group .form-control:focus {
box-shadow: none;
border-color: #86b7fe;
}
</style>
</head>
<body class="error-bg">
<div class="container-fluid d-flex align-items-center justify-content-center min-vh-100">
<div class="row justify-content-center w-100">
<div class="col-lg-6 col-md-8 col-sm-10">
<div class="card shadow-lg border-0">
<div class="card-body text-center p-5">
<!-- Brand Header -->
<div class="text-center mb-4">
<div class="d-flex align-items-center justify-content-center mb-3">
<i class="fas fa-paw brand-logo"></i>
<h3 class="mb-0 fw-bold text-dark">Gentelella</h3>
</div>
</div>
<!-- Error Icon and Number -->
<div class="mb-4">
<i class="fas fa-exclamation-triangle text-warning mb-3" style="font-size: 6rem;"></i>
<h1 class="display-1 fw-bold text-primary mb-0">404</h1>
</div>
<!-- Error Message -->
<div class="mb-4">
<h2 class="h3 text-dark mb-3">Page Not Found</h2>
<p class="text-muted lead">Sorry, the page you are looking for doesn't exist or has been moved.</p>
</div>
<!-- Action Buttons -->
<div class="d-grid gap-2 d-md-block mb-4">
<a href="index.html" class="btn btn-primary btn-lg me-md-2">
<i class="fas fa-home me-2"></i>Go Home
</a>
<button type="button" class="btn btn-outline-secondary btn-lg" onclick="history.back()">
<i class="fas fa-arrow-left me-2"></i>Go Back
</button>
</div>
<!-- Search Section -->
<div class="border-top pt-4">
<h5 class="text-muted mb-3">Or search for what you need:</h5>
<form class="d-flex justify-content-center">
<div class="input-group search-input-group" style="max-width: 400px;">
<input type="text" class="form-control" placeholder="Search pages, content..." aria-label="Search">
<button class="btn btn-outline-primary" type="submit">
<i class="fas fa-search"></i>
</button>
</div>
</form>
</div>
<!-- Help Links -->
<div class="mt-4">
<small class="text-muted">
Need help?
<a href="#" class="text-decoration-none">Contact Support</a> |
<a href="#" class="text-decoration-none">Report Issue</a>
</small>
</div>
</div>
</div>
<!-- Footer -->
<div class="text-center mt-4">
<p class="text-light opacity-75 mb-2">
© 2025 All Rights Reserved. Gentelella is a Bootstrap 5 template.
</p>
<div>
<a href="#" class="text-light text-decoration-none opacity-75 me-3">Privacy</a>
<a href="#" class="text-light text-decoration-none opacity-75 me-3">Terms</a>
<a href="#" class="text-light text-decoration-none opacity-75">Support</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>