-
Notifications
You must be signed in to change notification settings - Fork 0
/
updateDeleteInspector.html
38 lines (37 loc) · 1.48 KB
/
updateDeleteInspector.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
<!DOCTYPE html>
<html>
<head>
<title>Update/Delete Inspector</title>
<link rel='stylesheet' type='text/css' href='updateDeleteInspector.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="main-form">
<form action="/delete_inspector_post/" method="post" novalidate>
<h3>Id of Inspector that will be deleted:</h3>
<input type="text" name="inspector_id"><br><br>
<input type="submit" value="Delete"><br><br>
</form>
<form action="/update_inspector_post/" method="post" novalidate>
<h3>Enter in all of the Inspector's information and the record of the Inspector with that id will be updated:</h3>
ID of Inspector that will be updated:<br>
<input type="text" name="inspector_id"><br><br>
Inspector Social Security Number:<br>
<input type="text" name="inspector_ssn"><br><br>
Inspector Name:<br>
<input type="text" name="inspector_name"><br><br>
Inspector Start Date (yyyy-MM-dd):<br>
<input type="text" name="inspector_start"><br><br>
<input type="submit" value="Update">
</form>
</div>
</body>
</html>