-
Notifications
You must be signed in to change notification settings - Fork 2
/
checkout.html
74 lines (65 loc) · 3.36 KB
/
checkout.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
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
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checkout Page</title>
<link rel="stylesheet" href="checkout.css">
</head>
<body>
<div class="container121">
<div class="subcontainer">
<div class="container">
<form>
<div class="container121">
<div class="add">
<h3>Billing Address</h3>
<label for="fname">Full Name</label>
<input type="text" id="fname" name="firstname" placeholder="John M. Doe">
<label for="email"> Email</label>
<input type="text" id="email" name="email" placeholder="john@example.com">
<label for="adr"> Address</label>
<input type="text" id="adr" name="address" placeholder="542 W. 15th Street">
<label for="city">City</label>
<input type="text" id="city" name="city" placeholder="New York">
<div class="container121">
<div class="add">
<label for="state">State</label>
<input type="text" id="state" name="state" placeholder="NY">
</div>
<div class="add">
<label for="zip">Zip</label>
<input type="text" id="zip" name="zip" placeholder="10001">
</div>
</div>
</div>
<div class="add">
<label for="cname">Name on Card</label>
<input type="text" id="cname" name="cardname" placeholder="John More Doe">
<label for="ccnum">Credit card number</label>
<input type="text" id="ccnum" name="cardnumber" placeholder="1111-2222-3333-4444">
<label for="expmonth">Exp Month</label>
<input type="text" id="expmonth" name="expmonth" placeholder="September">
<div class="container121">
<div class="add">
<label for="expyear">Exp Year</label>
<input type="text" id="expyear" name="expyear" placeholder="2018">
</div>
<div class="add">
<label for="cvv">CVV</label>
<input type="text" id="cvv" name="cvv" placeholder="352">
</div>
</div>
</div>
</div>
<label>
<input type="checkbox" checked="checked"> Shipping address same as billing
</label>
<a href="payment_success.html"> <input type="button" value="Continue to checkout" class="btn"></a>
</form>
</div>
</div>
</div>
</body>
</html>