-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
37 lines (36 loc) · 1.52 KB
/
admin.php
File metadata and controls
37 lines (36 loc) · 1.52 KB
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
<html>
<body>
<style>
body{
background-image: linear-gradient(to right, #232526 0%, #414345 51%, #232526 100%);
font-family: monospace, serif;
letter-spacing: 0.05cm;
color:white;
font-size:20px;
}
input[type="submit"]
{
background: :black;
background-color: black;
padding:10px;
font-size:25px;
margin:20px;
width:30%;
border:0px transparent;
border-radius:10px;
color:white;
}
</style>
<input type="submit" value="View Bookings" onclick='location.href="sql.php?action=VBOOK"'>
<input type="submit" value="View Employees" onclick='location.href="sql.php?action=VEMP"'>
<input type="submit" value="View Pending Deliveries" onclick='location.href="sql.php?action=VPDEL"'>
<input type="submit" value="View Branch Details" onclick='location.href="sql.php?action=VBDET"'>
<input type="submit" value="View Customer Details" onclick='location.href="sql.php?action=VCDET"'>
<input type="submit" value="View Manager Details" onclick='location.href="sql.php?action=VMDET"'>
<input type="submit" value="Modify Bookings" onclick='location.href="sql.php?action=MBOOK"'>
<input type="submit" value="Modify Employee Details" onclick='location.href="sql.php?action=MEMP"'>
<input type="submit" value="Modify Delivery Details" onclick='location.href="sql.php?action=MDEL"'>
<input type="submit" value="Modify Branch Details" onclick='location.href="sql.php?action=MBDET"'>
<input type="submit" value="Modify Customer Details" onclick='location.href="sql.php?action=MCDET"'>
</body>
</html>