-
Notifications
You must be signed in to change notification settings - Fork 0
/
insertOwner.html
33 lines (32 loc) · 1.08 KB
/
insertOwner.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>Insert Owner</title>
<link rel='stylesheet' type='text/css' href='insertOwner.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 class="active" href="./owner.html">Owner</a>
<a href="./warehouse.html">Warehouse</a>
<a href="./delivery.html">Delivery</a>
</div>
<div class="main-form">
<form action="/insert_owner_post/" method="post" novalidate>
<h2>Insert Warehouse Owner</h2>
Warehouse Owner ID:<br>
<input type="text" name="owner_id"><br><br>
Owner Social Security Number:<br>
<input type="text" name="owner_ssn"><br><br>
Owner First Name:<br>
<input type="text" name="owner_fname"><br><br>
Owner Last Name:<br>
<input type="text" name="owner_lname"><br><br>
<input type="submit" value="Insert">
</form>
</div>
</body>
</html>