-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest
More file actions
51 lines (48 loc) · 2.03 KB
/
Copy pathtest
File metadata and controls
51 lines (48 loc) · 2.03 KB
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
<br>
<h2>View All Appointments and Invoices</h2>
<form method=\"POST\" action=\"customerstatus.php\">
<label for=\"cust_id\">ID</label>
<input type=\"text\" name=\"cust_id\" value=\"<?php echo $cust_id ?>\"readonly><br>
<input type=\"submit\" value=\"View\">
</form>
<br>
<h2>Would you like to submit an order?</h2>
<form method=\"POST\" action=\"submitorder.php\">
<label for=\"cust_id\">ID</label>
<input type=\"text\" name=\"cust_id\" value=\"<?php echo $cust_id ?>\"readonly><br>
<label for=\"date\">Date</label>
<input type=\"date\" name=\"date\" id=\"\"><br>
<label for=\"vin\">VIN</label>
<input type=\"text\" name=\"vin\"><br>
<label for=\"vehicle_type\">Type</label>
<input type=\"radio\" name=\"vehicle_type\" value=\"Car\">Car
<input type=\"radio\" name=\"vehicle_type\" value=\"Van\">Van
<input type=\"radio\" name=\"vehicle_type\" value=\"Truck\">Truck<br>
<?php
returnFormLocation($conn);
returnFormSkills($conn);
?>
<input type=\"submit\" value=\"Request Order\">
</form>
<br>
<h1>Register a Vehicle</h1>
<form method=\"POST\" action=\"registeredvehicle.php\">
<label for=\"cust_id\">ID</label>
<input type=\"text\" name=\"cust_id\" value=\"<?php echo $cust_id ?>\"readonly><br>
<label for=\"vin\">VIN</label>
<input type=\"text\" name=\"vin\"><br>
<label for=\"model\">Model</label>
<input type=\"text\" name=\"model\"><br>
<label for=\"make_year\">Year</label>
<input type=\"number\" name=\"make_year\"><br>
<label for=\"color\">Color</label>
<input type=\"text\" name=\"color\"><br>
<label for=\"manufacturer\">Manufacturer</label>
<input type=\"text\" name=\"manufacturer\"><br>
<label for=\"vehicle_type\">Type</label>
<input type=\"radio\" name=\"vehicle_type\" value=\"Car\">Car
<input type=\"radio\" name=\"vehicle_type\" value=\"Van\">Van
<input type=\"radio\" name=\"vehicle_type\" value=\"Truck\">Truck<br>
<input type=\"submit\" value=\"Register Vehicle\">
</form>
<a href=\"customerpage.php\">Return</a>