-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeleteDelivery.html
33 lines (32 loc) · 1.09 KB
/
deleteDelivery.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
<!DOCTYPE html>
<html>
<head>
<title>Delete Delivery</title>
<link rel='stylesheet' type='text/css' href='deleteDelivery.css' />
</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="main-form">
<form action="/delete_delivery_post/" method="post" novalidate>
<h3>Delivery with Truck, Warehouse, and Item ID combo will be Deleted:</h3>
ID of Truck:
<input type="text" name="truck_id"><br><br>
ID of Warehouse:
<input type="text" name="warehouse_id"><br><br>
ID of Item:
<input type="text" name="item_id"><br><br>
Quantity:
<input type="text" name="quantity"><br><br>
<input type="submit" value="Delete"><br><br>
</form>
</div>
</body>
</html>