-
Notifications
You must be signed in to change notification settings - Fork 0
/
adminpanel.php
60 lines (48 loc) · 1.56 KB
/
adminpanel.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
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favico.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="favico.ico">
<title>Admin Panel</title>
<link rel="stylesheet" href="css/adminstyle.css">
</head>
<body>
<main>
<header class="title">
<h1>Ruthy<span class="fashion">Fashion</span><sup>™</sup> </h1>
</header>
<div class="sidenav-wrapper">
<div class="sidenav">
<h3>Admin Actions</h3>
<div class="tab">
<a href="index.php" class="white link">BACK TO WEBSITE</a>
</div>
<div class="tab">
<a href="women-product-upload.php" class="white">Add women / Homepage Products</a>
</div>
<div class="tab">
<a href="men-product-upload.php" class="gold">Add New Men Products </a>
</div>
<div class="tab">
<a href="children-product-upload.php" class="white">Add New Children Products </a>
</div>
<div class="tab">
<a href="bag-product-upload.php" class="gold">Add New Bags</a>
</div>
<div class="tab">
<a href="decor-product-upload.php" class="white">Add New Decor Products</a>
</div>
<div class="tab">
<a href="shoe-product-upload.php" class="gold">Add New Shoe Products</a>
</div>
<div class="tab">
<a href="banner-update.php" class="white">Update Banner</a>
</div>
</div>
</div>
</main>
</body>
</html>