-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
54 lines (53 loc) · 1.48 KB
/
404.php
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Error page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="assets/css/style404.css">
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">
</head>
<body>
<div class="hamburger-menu">
<button class="burger" data-state="closed">
<span></span>
<span></span>
<span></span>
</button>
</div>
<nav data-state="closed">
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<!-- <a href="#">Services</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Contact</a>
</li> -->
</ul>
</nav>
<main>
<div class="container">
<div class="row ml-5">
<div class="col-md-6 align-self-center">
<img class="img-fluid image" src="assets/images/logo.png" height="50px" width="50px">
<h1>404</h1>
<h2>UH OH! You're lost.</h2>
<p>Please Enter correct credentials. You entered wrong username and password. Please provide correct details. You can click the button below
to go back to the loginpage.
</p>
<form action='includes/logout.inc.php' method='post'>
<button type='submit' class="btn green" name='logout-submit'>Login in again</button>
</form>
</div>
</div>
</div>
</main>
<script src="assets/js/sidebar.js"></script>
</body>
</html>