-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcheckout.html
97 lines (94 loc) · 3.03 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!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="css/chechout.css" />
</head>
<body>
<div id="checkout-container">
<div id="left">
<div class="logo">
<img src="img/FABBAG-LOGO-FINAL.png" alt="FABBAG-LOGO-FINAL" />
</div>
<div class="steps">
<ul>
<li>Cart > </li>
<li>Information > </li>
<li>Shipping > </li>
<li>Payment > </li>
</ul>
</div>
<div class="contact-information">
<h2>Contact Information</h2>
<h3>
Already have an account? <button><a href="#">Log in</a></button>
</h3>
</div>
<input type="email" placeholder="Email" />
<input type="checkbox" name="email" checked />
<label for="email">Email me with news and offers</label>
<form id="shipping">
<h2>Shipping Address</h2>
<select>
<option value="India">India</option>
</select>
<div class="name">
<input type="name" placeholder="First Name" id="first-name" />
<input type="name" placeholder="Last Name" id="last-name" />
</div>
<input type="text" placeholder="Company (Optional)" />
<input type="text" placeholder="Address" />
<div class="location">
<input type="text" placeholder="City" />
<input type="text" placeholder="State" />
<input type="number" placeholder="Pincode" />
</div>
<input type="number" placeholder="Phone" />
<div class="saveForLtr">
<input type="checkbox" name="save" />
<label for="save">Save this information for next time</label>
</div>
<div class="lastsection">
<p>< Return to Cart</p>
<button type="submit">Continue to shipping</button>
</div>
</form>
</div>
<div id="right">
<div class="desc">
<img src="img/Makeup-Reveal-1.gif" alt="Product Image" />
<div>
<p>The AweSummer May Fab Bag</p>
<p>1 Month</p>
</div>
<div class="price">Rs. 599.00</div>
</div>
<hr />
<div class="promo">
<input type="text" placeholder="Discount Code" />
<button>Apply</button>
</div>
<hr />
<div id="finalPrice">
<div class="subtotal">
<p>Subtotal</p>
<p>Rs. 599.00</p>
</div>
<div class="shipping">
<p>Shipping</p>
<p>Calculated at next step</p>
</div>
<hr />
<div>
<p>Total</p>
<p>INR <strong>2599.00</strong></p>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="ccheckout.js"></script>