83 lines
3.3 KiB
HTML
83 lines
3.3 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">
|
|
|
|
<!-- Begin page -->
|
|
<div id="wrapper">
|
|
|
|
@@include('./partials/left-sidebar.html')
|
|
|
|
<!-- ============================================================== -->
|
|
<!-- Start Page Content here -->
|
|
<!-- ============================================================== -->
|
|
|
|
<div class="content-page">
|
|
<div class="content">
|
|
|
|
@@include('./partials/topbar.html')
|
|
|
|
<!-- Start Content-->
|
|
<div class="container-fluid">
|
|
|
|
<div class="row justify-content-center my-5">
|
|
<div class="col-lg-6 col-xl-4 mb-4">
|
|
<div class="error-text-box">
|
|
<svg viewBox="0 0 600 200">
|
|
<!-- Symbol-->
|
|
<symbol id="s-text">
|
|
<text text-anchor="middle" x="50%" y="50%" dy=".35em">404!</text>
|
|
</symbol>
|
|
<!-- Duplicate symbols-->
|
|
<use class="text" xlink:href="#s-text"></use>
|
|
<use class="text" xlink:href="#s-text"></use>
|
|
<use class="text" xlink:href="#s-text"></use>
|
|
<use class="text" xlink:href="#s-text"></use>
|
|
<use class="text" xlink:href="#s-text"></use>
|
|
</svg>
|
|
</div>
|
|
<div class="text-center">
|
|
<h3 class="mt-0 mb-2">Whoops! Page not found </h3>
|
|
<p class="text-muted mb-3">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 href="index.html" class="btn btn-success waves-effect waves-light">Back to Dashboard</a>
|
|
</div>
|
|
|
|
</div> <!-- end col -->
|
|
</div>
|
|
<!-- end row -->
|
|
|
|
</div> <!-- container -->
|
|
|
|
</div> <!-- content -->
|
|
|
|
@@include('./partials/footer.html')
|
|
|
|
</div>
|
|
|
|
<!-- ============================================================== -->
|
|
<!-- End Page content -->
|
|
<!-- ============================================================== -->
|
|
|
|
|
|
</div>
|
|
<!-- END wrapper -->
|
|
|
|
@@include('./partials/right-sidebar.html')
|
|
|
|
<!-- Vendor js -->
|
|
<script src="../assets/js/vendor.min.js"></script>
|
|
|
|
<!-- App js -->
|
|
<script src="../assets/js/app.min.js"></script>
|
|
|
|
</body>
|
|
</html> |