-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
34 lines (34 loc) · 757 Bytes
/
Copy pathindex.php
File metadata and controls
34 lines (34 loc) · 757 Bytes
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
<html>
<?php include 'core/init.php';
protect_page();
?>
<?php
$role = $user_data['role'];
if ($role=="admin") {
?>
<?php
}elseif ($role=="deo"){
}?>
<head>
<link rel="stylesheet" href="css/select1.css" type="text/css">
</head>
<body>
<div class="inventory">
<h1 id="im-name">Inventory Management</h1>
<div class="inventory-mgt">
<a href="InventoryManager/inventory.php">
<img src="img/inventory.png">
</a>
</div>
</div>
<div class="warranty">
<a class="mainLG" href="login.php">Logout</a>
<h1 id="wm-name">Warranty Management</h1>
<div class="warranty-mgt">
<a href="WarrantyManager/enterDefect.php">
<img src="img/warranty.png">
</a>
</div>
</div>
</body>
</html>