-
Notifications
You must be signed in to change notification settings - Fork 82
/
404.html
39 lines (36 loc) · 1.35 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<!--
* Bootstrap Simple Admin Template
* Version: 2.1
* Author: Alexis Luna
* Website: https://github.com/alexis-luna/bootstrap-simple-admin-template
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>404 | Page not found!</title>
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/error.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div class="page vertical-align text-center">
<div class="page-content vertical-align-middle">
<header>
<h1 class="animation-slide-top">404</h1>
<p>Page Not Found !</p>
</header>
<p class="error-advise">The page you were looking for could not be found.</p>
<a class="btn btn-primary btn-round mb-5" href="dashboard.html">GO TO HOME PAGE</a>
<footer class="page-copyright">
<p>© 2021. All RIGHT RESERVED.</p>
</footer>
</div>
</div>
</div>
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>