forked from kunalchandel4/teamDeskChampions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddcart.html
195 lines (179 loc) · 6.08 KB
/
addcart.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!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>documect</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- <div> -->
<div id="nav">
<div id="logo">
<a href="index.html"> <img src="https://logodownload.org/wp-content/uploads/2014/05/zara-logo-1.png" alt="error">
</a>
</div>
<div id="loghelp">
<a href="login.html" id="lg"></a>
<a href="https://www.zara.com/in/en/help" target="blank">HELP</a>
</div>
</div>
<div class="Choose payment-container">
<div class="paymentTitle">
<h1>
CHOOSE A PAYMENT METHOD
</h1>
</div>
<div class="paymentHeadline">
<p style="color: #ff930b">
Please note that only cards that use 3D Secure are accepted. Contact your bank to activate it or for further instructions.
</p>
<!-- </div> -->
<div class="paymentMethod">
<div>
<label>
<img
src="https://static.zara.net/static/images/payment/payment/icon-payment-visa.svg"
alt="logo"
/>
<span>vISA</span>
</label>
</div>
<div>
<label>
<img
src="https://static.zara.net/static/images/payment/payment/icon-payment-mastercard.svg"
alt="logo"
/>
<span>MASTER CARD</span>
</label>
</div>
<div>
<label>
<img
src="https://static.zara.net/static/images/payment/payment/icon-payment-amex_2.svg"
alt="logo"
/>
<span>AMERICAN EXPRESS</span>
</label>
</div>
<div>
<label>
<img
src="https://static.zara.net/static/images/payment/payment/ru-pay.svg"
alt="logo"
/>
<span>RUPAY</span>
</label>
</div>
<div>
<label>
<img
src=" https://static.zara.net/static/images/payment/payment/net-banking.svg"
alt="cash on delivery"
/>
<span>NETBANKING</span>
</label>
</div>
<div>
<label>
<img
src="https://static.zara.net/static/images/payment/payment/upi.svg"
alt="IN Card"
/>
<span>UNIFIED PAYMENT INTERFACE</span>
</label>
</div>
</div>
<div class="paymentMethod1">
<div>
<label>
<img
src="https://static.zara.net/static/images/payment/payment/co-djpen.svg"
alt="logo"
/>
<span>CASH ON DELIVERY</span>
</label>
</div>
</div>
<div class="paymentMethod2">
<div>
<label>
<img
src="https://static.zara.net/static/images/payment/payment/in.svg"
alt="logo"
/>
<span>IN CARD</span>
</label>
</div>
</div>
<section id="option">
<div>
<h3>HELP</h3>
<ul>
<li>SHOP AT ZARA.COM</li><br>
<li>PRODUCT</li><br>
<li>PAYMENT</li><br>
<li>SHIPPING</li><br>
<li>EXCHANGES AND RETURNS</li><br>
<li>SHOPS AND COMPANY </li><br>
<li>CLOTHES COLLECTION PROGRAMME</li><br>
<li>MY ACCOUNT </li>
</ul>
</div>
<div>
<h3> FOLLOW US</h3>
<ul>
<li>NEWSLETTER</li><br>
<li>INSTAGRAM</li><br>
<li>FACEBOOK</li><br>
<li>TWITTER</li><br>
<li>PINTEREST</li><br>
<li>YOUTUBE</li>
</ul>
</div>
<div>
<h3>COMPANY</h3>
<ul>
<li>ABOUT US</li><br>
<li>JOIN LIFE</li><br>
<li>OFFICES</li><br>
<li>STORES</li><br>
<li>WORK WITH US</li>
</ul>
</div>
<div>
<h3>POLICIES</h3>
<ul>
<li>PRIVACY POLICY</li><br>
<li>PURCHASE CONDITIONS</li><br>
<li>COOKIES SETTINGS</li>
</ul>
</div>
</section>
<section id="second">
<p>INDIA</p>
<p>ENGLISH</p>
<p>@ALL RIGHTS RESERVED</p>
</section>
<div id="end">
<p>NAME AND ADDRESS OF THE MANUFACTURER: <br> INDUSTRIA DE DISEÑO TEXTIL, S.A. (INDITEX, S.A.) <br> AVENIDA DE LA DIPUTACIÓN, EDIFICIO INDITEX, 15143, ARTEIXO (A CORUÑA), SPAIN</p>
</div>
<div class="footerNav">
<P id="lol"></P>
<button>Continue</button>
</div>
</div>
</div>
</body>
</html>
<script>
let logdata = JSON.parse(localStorage.getItem("Userdata"))
logdata.forEach(function(elem) {
document.querySelector("#lg").innerText = elem.name;
})
let data = JSON.parse(localStorage.getItem("total")) || 0
document.querySelector("#lol").innerText = "TOTAL ₹" +
data + ".00";
</script>