-
Notifications
You must be signed in to change notification settings - Fork 0
/
inspection.html
61 lines (60 loc) · 2.19 KB
/
inspection.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
<!DOCTYPE html>
<html>
<head>
<title>ABC Inspection</title>
<link rel='stylesheet' type='text/css' href='inspection.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 class="active" href="./inspection.html">Inspection</a>
<a href="./owner.html">Owner</a>
<a href="./warehouse.html">Warehouse</a>
<a href="./delivery.html">Delivery</a>
</div>
<div class="grid-container">
<div id="insert-inspection">
<a href="./InsertInspection.html">Insert Inspection</a><br>
<img src="./inspection.png" alt="Truck Inspection clipboard">
</div>
<div>
<a href="./updateDeleteInspection.html">Update/Delete Inspection</a><br>
<img src="./updateDelete.jpg" alt="Pencil and Paper" id="smaller">
</div>
<div>
<a href="./get_inspection_list/">List Inspections</a><br>
<img src="./list.png" alt="List on Clipboard">
</div>
<div>
<a href="./inspectionStats.html">Inspection Report</a><br>
<img src="./stats.png" alt="Pie Chart">
</div>
<div>
<a href="./searchNextMonth.html">Inspections By Month</a><br>
<img src="./list.png" alt="List on Clipboard" id="smaller">
</div>
<div>
<a href="./InsertInspector.html">Insert Inspector</a><br>
<img src="./inspector.jpg" alt="Inspector with Clipboard" id="taller">
</div>
<div>
<a href="./updateDeleteInspector.html">Update/Delete Inspector</a><br>
<img src="./updateDelete.jpg" alt="Pencil and Paper" id="smaller">
</div>
<div>
<a href="./get_inspector_list/">List Inspectors</a><br>
<img src="./list.png" alt="List on Clipboard">
</div>
<div>
<a href="./inspectorStats.html">Inspector Report</a><br>
<img src="./stats.png" alt="Pie Chart">
</div>
<div>
<a href="./searchInspection.html">Search For Inspection</a><br>
<img src="./search.png" alt="Search the World" id="smaller">
</div>
</div>
</body>
</html>