-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminpanel.php
27 lines (26 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<title>Admin Control Panel</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<div class="container mt-5">
<h1>Admin Control Panel</h1>
<div class="row">
<div class="col">
<a href="createproduct.php" class="btn btn-primary">Add Product</a>
</div>
<div class="col">
<a href="deleteproduct.php" class="btn btn-danger">Delete Product</a>
</div>
<div class="col">
<a href="editproduct.php" class="btn btn-warning">Edit Product</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.3/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>