-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminhome.php
41 lines (27 loc) · 745 Bytes
/
adminhome.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
<!DOCTYPE html>
<html>
<?php
include("design.css");
?>
<body>
<div class="container">
<header>
<h1 style="font-size:75px">MKM Furniture</h1>
<h1 style="font-size:50px">Admin Panel</h1>
</header>
<div class="topnav">
<a href="admin_furniture.php">Furniture</a>
<a href="admin_showroom.php">Showroom</a>
<a href="admin_customer.php">Customers</a>
<a href="admin_delivery.php">Delivery</a>
<a href="admin_order.php">Order</a>
<a href="user.php">Users</a>
<a href="admin_stock_check.php">Stock</a>
<a href="admin_manu_order.php">Manufacture Orders</a>
<a href="home.php">Log Out</a>
</div>
<img src="photos/mkm.jpg" style="width:100%;height:10%">
<footer>..Group 33..</footer>
</div>
</body>
</html>