-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeliverypage.html
257 lines (243 loc) · 8.35 KB
/
deliverypage.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<!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>Delivery Page</title>
<script src="https://kit.fontawesome.com/3e0c0ed060.js" crossorigin="anonymous"></script>
<style>
body{
background-color: rgb(253, 251, 240);
}
#info{
padding: 30px 80px;
display: flex;
}
#left{
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
width: 57%;
padding: 5px;
}
#right{
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
width: 30%;
margin-left: 8%;
padding: 5px;
}
#topLeft{
display: flex;
justify-content: space-between;
}
#fullName{
display: flex;
justify-content: space-between;
}
#right{
padding: 0px 20px;
}
#topRight{
display: flex;
justify-content: space-between;
padding-top: 90px;
}
#topRight p{
color: cadetblue;
margin-top: 25px;
}
#freeShopping{
text-align: center;
border: 2px solid rgb(154, 241, 198);
padding: 5px;
border-radius: 3px;
}
h1{
font-size: 40px;
}
label{
font-size: 20px;
}
input{
padding: 12px 8px;
margin-top: 6px;
margin-bottom: 16px;
width: 97%;
border-radius: 3px;
border: 1px solid teal;
font-size: 16px;
}
#details{
margin-top: 30px;
}
#fullName input{
width: 300px;
}
button{
width: 100%;
margin-top: 15px;
padding: 10px;
font-size: 20px;
background-color: red;
color: white;
border: none;
border-radius: 3px;
cursor: pointer;
}
button:hover{
scale: 1.1;
color: whitesmoke;
background-color: brown;
}
.fa-solid{
margin-top: 20px;
}
#image img{
width: 60%;
display: flex;
margin: auto;
margin-top: 30px;
}
#discountPrice{
text-decoration: line-through;
}
#prices{
display: flex;
justify-content: space-between;
}
#total{
display: flex;
justify-content: space-between;
}
</style>
</head>
<body>
<div id="info">
<div id="left">
<div>
<h1>Checkout</h1>
</div>
<div id="topLeft">
<h3>1.Information</h3>
<i class="fa-solid fa-arrow-right-long"></i>
<h3>2.Delivery</h3>
<i class="fa-solid fa-arrow-right-long" style="color: cadetblue;"></i>
<h3 style="color: cadetblue;">3.Payment method</h3>
</div>
<div id="details">
<form action="">
<label for="">Shipping Method</label><br>
<input type="text" id="sm"><br>
<label for="">City</label><br>
<input type="text" id="city"><br>
<label for="">Post Office</label><br>
<input type="text" name="" id="po"><br><br>
<label for="">Mon-Fri 09:00-18:00</label><br>
<label for="">Sat-Sun 09:00-15:00</label>
<button id="submit">Continue</button>
</form>
</div>
</div>
<div id="right">
<div id="topRight">
<h2>Your Order</h2>
<p>Edit</p>
</div>
<p id="freeShopping">You're getting free shopping!</p>
<p>You earn 320 points on this purchase!</p>
<hr>
<div id="productDetails">
<div id="image">
<img src="https://keyassets.timeincuk.net/inspirewp/live/wp-content/uploads/sites/34/2017/11/margaux-2015-limited-release.jpg" alt="">
</div>
<div id="">
<h5>Château Margaux</h5>
<p>year <span id="year">2019</span></p>
<div id="prices">
<h5><span id="discountPrice">2000 </span><span class="acctualPrice">1800</span></h5>
<h5 class="acctualPrice">1800</h5>
</div>
<hr>
</div>
<div id="total">
<h3>Total</h3>
<h3>1800</h3>
</div>
</div>
</div>
</div>
<script>
let btn = document.getElementById("submit");
btn.addEventListener("click",()=>{
event.preventDefault()
let shippingMethod = document.getElementById("sm").value;
let cityName = document.getElementById("city").value;
let PostOffice = document.getElementById("po").value;
if(shippingMethod == "" || cityName == "" || PostOffice == ""){
alert("Please Fill All Details")
}else{
location.href = "payment.html"
}
})
let data = JSON.parse(localStorage.getItem("card")) || [];
// let totalPrice = (arr)=>{
// let price;
// arr.forEach(elm=>{
// price = price + elm.price
// console.log(price)
// })
// return price
// }
let container = document.getElementById("productDetails");
let displayData = ()=>{
container.textContent = "";
let sum = 0;
data.forEach(elm=>{
let image = document.createElement("div");
image.setAttribute("id","image")
let img = document.createElement("img");
img.src = elm.url
image.appendChild(img);
let div = document.createElement("div");
let name = document.createElement("h5");
name.textContent = elm.name;
let paraYear = document.createElement("p");
paraYear.textContent = "Year "
let year = document.createElement("span");
year.setAttribute("id","year");
year.textContent=elm.year;
paraYear.appendChild(year);
let price = document.createElement("div");
price.setAttribute("id","prices");
let h5 = document.createElement("h5");
let discountPrice = document.createElement("span");
discountPrice.setAttribute("id","discountPrice");
discountPrice.textContent = "₹ "+(elm.price+180);
let acctualPrice = document.createElement("span");
acctualPrice.setAttribute("class","acctualPrice");
acctualPrice.textContent = " "+" "+"₹ "+elm.price;
h5.append(discountPrice,acctualPrice);
let mainAcctualPrice = document.createElement("h5");
mainAcctualPrice.setAttribute("class","acctualPrice");
mainAcctualPrice.textContent = "₹ "+elm.price
sum = sum+elm.price;
price.append(h5,mainAcctualPrice);
let hr = document.createElement("hr");
div.append(name,paraYear,price,hr);
container.append(image,div)
});
// let totalPri = totalPrice(data);
let total = document.createElement("div");
total.setAttribute("id","total")
let totalH3 = document.createElement("h3");
totalH3.textContent = "Total";
let totalAmount = document.createElement("h3");
totalAmount.textContent = sum;
total.append(totalH3,totalAmount);
container.append(total);
// console.log(totalPri)
}
displayData()
</script>
<script type="module" src="./JS/importedHeader.js"></script>
</body>
</html>