-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_logout_msg.php
More file actions
39 lines (39 loc) · 1.88 KB
/
admin_logout_msg.php
File metadata and controls
39 lines (39 loc) · 1.88 KB
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>
<html>
<head>
<link rel="icon" href="images/g.webp" type="image/webp" sizes="16x16">
<title>GIFTCART</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body class="log">
<div class="container-fluid text-center pt-5 px-5">
<div class="row px-5">
<div class="col-sm-12 col-md-6 pt-5" id="col-1">
<div class="pt-5">
<img src="images/giftcart.jpeg" width="50%">
</div>
</div>
<div class="col-sm-12 col-md-6 pt-5" id="col-2">
<div class="section mt-5">
<div class="heading pt-5">
<h3><?php echo "YOU HAVE BEEN SIGNED OUT.";?></h3>
</div>
<div class="content">
<div class="box">
</div>
<div class="box">
<input type="button" name="Login" class="nav-item m-3 p-3" value="Login" onclick="document.location.href='index.php'"><br>
</div>
</div>
</div>
</div>
<footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.min.js" integrity="sha384-lpyLfhYuitXl2zRZ5Bn2fqnhNAKOAaM/0Kr9laMspuaMiZfGmfwRNFh8HlMy49eQ" crossorigin="anonymous"></script>
</footer>
</body>
</html>