56 lines
2.1 KiB
HTML
56 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
@@include("partials/title-meta.html", {"title": "Error Page | 404 | Page not Found"})
|
|
|
|
@@include('./partials/head-css.html')
|
|
|
|
</head>
|
|
|
|
<body class="loading">
|
|
|
|
<div class="account-pages my-5">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8 col-lg-6 col-xl-5">
|
|
<div class="card">
|
|
|
|
<div class="card-body p-4">
|
|
|
|
<div class="error-ghost text-center">
|
|
<img src="../assets/images/error.svg" width="200" alt="error-image"/>
|
|
</div>
|
|
|
|
<div class="text-center">
|
|
<h3 class="mt-4 text-uppercase font-weight-bold">Page not found </h3>
|
|
<p class="text-muted mb-0 mt-3" style="line-height: 20px;">It's looking like you may have taken a wrong turn. Don't worry...
|
|
it happens to the best of us. You might want to check your internet connection.
|
|
Here's a little tip that might help you get back on track.</p>
|
|
|
|
<a class="btn btn-primary mt-3" href="index.html"><i class="mdi mdi-reply mr-1"></i> Return Home</a>
|
|
</div>
|
|
|
|
</div> <!-- end card-body -->
|
|
</div>
|
|
<!-- end card -->
|
|
|
|
</div> <!-- end col -->
|
|
</div>
|
|
<!-- end row -->
|
|
</div>
|
|
<!-- end container -->
|
|
</div>
|
|
<!-- end page -->
|
|
|
|
<footer class="footer footer-alt">
|
|
<script>document.write(new Date().getFullYear())</script> © Minton theme by <a href="">Coderthemes</a>
|
|
</footer>
|
|
|
|
<!-- Vendor js -->
|
|
<script src="../assets/js/vendor.min.js"></script>
|
|
|
|
<!-- App js -->
|
|
<script src="../assets/js/app.min.js"></script>
|
|
|
|
</body>
|
|
</html> |