-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpurchase.html
More file actions
54 lines (39 loc) · 1.63 KB
/
purchase.html
File metadata and controls
54 lines (39 loc) · 1.63 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
52
53
54
<?php
include_once 'includes/dbh.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>purchase</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<a href="index.php">Home Page</a>
<h3 style="color:blue">Purchase Form</h3>
<form action="includes/signup.php" method="GET">
Date(yyyymmdd):<input type="number" name="date" placeholder="Date"><br>
Locations:<input type="text" name="location" placeholder="Location">
Seller/Dealer<input type="text" name="seller" placeholder="Seller/Dealer"><br>
Auction?<input type="text" name="auction" placeholder="YES/NO">
Dealer_ID:<input type="number" name="dealerId" placeholder="Dealer ID"><br>
<p>Vehicle:</p>
<input type="text" name="serial_number" placeholder="Serial Number"><br>
<input type="text" name="make" placeholder="Make">
<input type="text" name="model" placeholder="Model">
<input type="text" name="year" placeholder="Year">
<input type="text" name="color" placeholder="Color"><br>
<input type="text" name="miles" placeholder="Miles">
<input type="text" name="condition" placeholder="Condition">
<input type="text" name="bookPrice" placeholder="Book Price">
<input type="text" name="pricePaid" placeholder="Price Paid"><br>
<p>Repair Costs:</p>
<input type="text" name="number" placeholder="#">
<input type="text" name="problem" placeholder="Problem">
<input type="number" name="estCost" placeholder="est Costs">
<input type="number" name="actCost" placeholder="Actual Costs"><br>
<p>Sale Form:</p>
<button type="submit" name="button">Submit</button>
</form>
</body>
</html>