-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_home.php
More file actions
95 lines (34 loc) · 1.56 KB
/
admin_home.php
File metadata and controls
95 lines (34 loc) · 1.56 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
session_start();
if(isset($_SESSION['uid'])){
}else{
header('Location:adminlogin.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="jumbotron" style ="background:url('images/9.jpg') no-repeat;background-size:cover;height: 350px;">
</div>
<div class ="container" style ="margin-top:20px;margin-left: 200px;">
<div class="row">
<div class="col-md-10">
<div class="card">
<div class="card-body" >
<img src="images/1.png" class ="card-img-top" style="width:100px;height: 80px;"><hr>
</div>
<div class ="col-md-4">
<div class="list-group">
<a href="" class="list-group-item active" style="background-color: #3498DB ;color: #ffffff;"border-color:#33D1FF>Admin_Home</a>
<a href="account_details.php" class="list-group-item ">Account Details</a>
<a href="user_details.php" class="list-group-item ">User Details</a>
<a href="index.php" class="list-group-item ">SignOut</a>
</div>
</div>
<scripts src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>