-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplacingOrder.shtml
65 lines (51 loc) · 1.87 KB
/
placingOrder.shtml
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
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Placing Order</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="titles">
<h1><u>Placing Order</u></h1>
</div>
<form action="processing/placingOrder.php" method="post">
<div id="placingOptions">
<p>
<label for="serialBox"><u>Item Serial #</u></label>
<input id="serialBox" type="text" placeholder="umd-item-0000" name="serialNumber">
</p>
<p>
<u>Credit Card # </u>
<input id="cardBox1" type="text" name="cc1" maxlength="4">
-
<input id="cardBox2" type="text" name="cc2" maxlength="4">
-
<input id="cardBox3" type="text" name="cc3" maxlength="4">
-
<input id="cardBox4" type="text" name="cc4" maxlength="4">
</p>
<p>
<label for="addyBox"><u>Shipping Address</u> </label>
<input id="addyBox" type="text" name="shipping">
</p>
<p>
<label for="placeEmailBox">
<u>Contact Email Address:</u>
</label>
<input id="placeEmailBox" type="email" name="email" placeholder="[email protected]">
</p>
<p>
<input type="submit" value="Submit Order" style="height: 40px; width: 100px">
<input type="reset" value="Clear" style="height: 40px; width: 100px">
</p>
</div>
</form>
<div id="placingFoot">
<div id="foot">
<!--#include virtual="footer.shtml"-->
</div>
</div>
</body>
</html>