-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_home.php
52 lines (43 loc) · 1.02 KB
/
admin_home.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
<?php
include"database.php";
session_start();
if(!isset($_SESSION["AID"]))
{
echo"<script>window.open('index.php?mes=Access not granted','_self');</script>";
}
?>
<!DOCTYPE html>
<html>
<head>
<title>ASP - Admin Home</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<?php include"navbar.php";?><br>
<div id="section">
<?php include"sidebar.php";?><br>
<div class="content">
<h3 class="text">Welcome <?php echo $_SESSION["ANAME"]; ?></h3><br><hr><br>
<h3 > Project Information</h3><br>
<img src="img/logo.png" class="imgs">
<div>
<ul>
<li><h4>Ahmed Alif Swopno</h4></li>
<p>18-37750-1</p>
<br>
<li><h4>Shahrin Binte Ali</h4></li>
<p>17-35970-3</p>
<br>
<li><h4>Abdur Rahman</h4></li>
<p>17-34794-2</p>
<br>
<li><h4>Shahruk Rahman</h4></li>
<p>17-35024-2</p>
<br>
</ul>
</div>
</div>
</div>
<?php include"footer.php";?>
</body>
</html>