-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelivery.html
62 lines (61 loc) · 2.09 KB
/
delivery.html
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
61
62
<!DOCTYPE html>
<html>
<head>
<title>ABC Delivery</title>
<link rel='stylesheet' type='text/css' href='delivery.css' />
<script src="./app.js"> </script>
</head>
<body>
<div class="topnav">
<a href="./main.html">Home</a>
<a href="./driver.html">Driver</a>
<a href="./truck.html">Truck</a>
<a href="./inspection.html">Inspection</a>
<a href="./owner.html">Owner</a>
<a href="./warehouse.html">Warehouse</a>
<a class="active" href="./delivery.html">Delivery</a>
</div>
<div class="grid-container">
<div id="insert-benefit">
<a href="./insertDelivery.html">Insert Delivery</a><br>
<img src="./delivery.png" alt="Handtruck with Delivery">
</div>
<div>
<a href="./deleteDelivery.html">Delete Delivery</a><br>
<img src="./updateDelete.jpg" alt="Pencil and Paper">
</div>
<div>
<a href="/get_delivery_list/">List Deliveries</a><br>
<img src="./list.png" alt="List on Clipboard">
</div>
<div>
<a href="/get_delivery_report/">Delivery Report</a><br>
<img src="./stats.png" alt="Pie Chart">
</div>
<div>
<a href="./searchDelivery.html">Search For Delivery</a><br>
<img src="./search.png" alt="Search the World">
</div>
<div>
<a href="./insertItem.html">Insert Item</a><br>
<img src="./item.png" alt="Package">
</div>
<div>
<a href="./updateDeleteItem.html">Update/Delete Item</a><br>
<img src="./updateDelete.jpg" alt="Pencil and Paper">
</div>
<div>
<a href="/get_item_list/">List Items</a><br>
<img src="./list.png" alt="List on Clipboard">
</div>
<div>
<a href="/get_truck_delivery_report/">Delivery Report By Truck</a><br>
<img src="./stats.png" alt="Pie Chart" id="smaller">
</div>
<div>
<a href="./searchItem.html">Search For Item</a><br>
<img src="./search.png" alt="Search the World">
</div>
</div>
</body>
</html>