-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpayment.html
150 lines (135 loc) · 5.53 KB
/
payment.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!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>Document</title>
<link rel="stylesheet" href="../styles/payment.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<div id="main">
<div id="navbar">
<div id="head">
<div>
<div class="div">
<span class="material-symbols-sharp">lock</span>
<h3>Secure Checkout</h3>
<img src="../images/logo1.png" alt="">
</div>
</div>
<div>
<a href="../index.html"><img src="../images/logo.png" alt="Website Logo" id="logo"></a>
</div>
<div>
<h3>Need Help ?</h3>
<span class="material-symbols-sharp">call</span>
<p>(+44 (0) 20 3510 0670)
</p>
</div>
</div>
</div>
<div id="bodyy">
<div id="box-1">
<div class="progress_bar">
<ul>
<li>
<img src="https://cdn-static.farfetch-contents.com/assets/portal-checkout-web/v2-0-22195-405/Static/assets/images/box_tracker_black.svg"
alt="">
<p class="dot">.</p>
<p class="p_name">1. Delivery</p>
</li>
<li>
<img src="https://cdn-static.farfetch-contents.com/assets/portal-checkout-web/v2-0-22195-405/Static/assets/images/box_tracker_black.svg"
alt="">
<p class="dot">.</p>
<p class="p_name">2. Payment</p>
</li>
<li>
<img src="https://cdn-static.farfetch-contents.com/assets/portal-checkout-web/v2-0-22195-405/Static/assets/images/box_tracker_black.svg"
alt="">
<p class="dot">.</p>
<p class="p_name">3. Review</p>
</li>
</ul>
</div>
<div id="big">
<h2>Select your payment method</h2>
<div id="boxx">
<div id="paytm"><img src="https://www.logo.wine/a/logo/PayPal/PayPal-Logo.wine.svg" alt="">
</div>
<div id="card_method">
<p>Debit or credit card</p>
</div>
</div>
<div id="req">
<h3>CARD DETAILS</h3>
<p>Cardholder name</p>
<input type="text" class="chname">
<div class="input">
<div>
<p>Card Number*</p>
<input type="number" id="cardno">
</div>
<div>
<p>Expiration date*</p>
<input type="date" name="" id="exp">
</div>
</div>
<div>
<p>Security code*</p>
<input type="number" id="code_no">
</div>
<div class="billing">
<input type="checkbox" name="" id="checkbox">
<p>Save payment details</p>
</div>
</div>
</div>
<h3>Billing Address</h3>
<div id="bad">
<div id="bill_add">
<div class="container"></div>
<div><a id="edit" href="address.html">Edit</a></div>
</div>
</div>
<div id="ana"><a href="address.html">Add New Address +</a></div>
</div>
<!-- <div id="box-2"> -->
<div id="req2">
<h2>Summary</h2>
<div id="sum">
<div id="product"></div>
</div>
<div id="delivery">
<h4 class="sub">Delivery</h4>
<h4 id="deliverydata">USD $ 600</h4>
</div>
<hr>
<div id="totalprice">
<h4 class="sub">Total</h4>
<h4 id="price"></h4>
</div>
<p class="idi">Import duties included</p>
<button id="savebtn">Save and Continue ></button>
</div>
<!-- </div> -->
</div>
<div id="footer">
<div id="f1">
<h3>Not Aniket Rasal?</h3>
<a href="../login.html">SignOut</a>
</div>
<div id="f2">
<h3>IN/USD ($)</h3>
<h3>Need Help?</h3>
<span id="call" class="material-symbols-sharp">call</span>
<p>(+44 (0) 20 3510 0670)</p>
</div>
</div>
</div>
</body>
</html>
<script src="../scripts/payment.js"></script>