forked from vishal-girhepunje/Nordstrom-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment_confirm.html
202 lines (165 loc) · 4.59 KB
/
payment_confirm.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
<!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>
<style>
#nav>a>img {
height: 120px;
width: 150px;
margin-left: -200px;
}
h1 {
color: rgb(62, 65, 82);
}
h1+img{
border: 1px solid black;
}
#num{
height: 20px;
/* width: 100px; */
}
#nav {
display: flex;
justify-content: space-evenly;
width: 80%;
align-items: center;
box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
background-color: white;
width: 100%;
}
#nav>input {
width: 20%;
height: 40px;
width: 30%;
align-self: center;
border: 0px solid grey;
background-color: rgb(239, 239, 239);
border-radius: 5px;
padding-left: 10px;
/* border: 1px solid black; */
}
#nav>h2:hover {
text-decoration-line: underline;
text-decoration-color: brown;
text-underline-offset: 45px;
text-decoration-thickness: 5px;
}
#nav>a>button {
border: 0;
background-color: white;
}
#nav>a>button:hover {
text-decoration-line: underline;
text-decoration-color: brown;
text-underline-offset: 45px;
text-decoration-thickness: 5px;
cursor: pointer;
}
#main>form {
border: 1px solid rgb(201, 201, 201);
width: 150px;
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
text-align: left;
padding-left: 5px;
}
#main>p:hover {
cursor: pointer;
}
#main {
border: 0px solid red;
margin-top: -10px;
justify-content: space-around;
margin-bottom: 50px;
position: fixed;
margin-left: 20px;
margin-left: 80%;
}
#content {
width: 70%;
margin: auto;
border: 1px solid black;
}
#content>div>li {
color: grey;
}
#content>div {
text-align: center;
border: 1px solid rgb(207, 205, 205);
padding: 20px 0px 20px 0px;
border: 1px solid black;
}
#sec_main {
display: flex;
}
#sec_main>div:nth-child(1) {
margin-right: 20px;
}
#rem {
background-color: rgb(255, 63, 108);
border: 0;
color: white;
}
#price {
display: flex;
}
#price>div {
height: auto;
width: 80%;
}
#price>div:nth-child(1) {
width: 300px;
}
#total_amount {
display: flex;
justify-content: space-between;
width: 250px;
}
#content>div>p {
color: rgb(152, 149, 149);
}
#content>div>a>button {
width: 300px;
border: 0;
height: 50px;
background-color: rgb(255, 63, 108);
color: white;
}
#content>div>a>button:hover {
cursor: pointer;
background-color: rgb(214, 35, 76);
}
</style>
</head>
<body>
<div id="nav">
<!-- Navbar -->
<a href="index.html"></a>
<img src="pay.png" alt="">
<img src="secure_bag.png" alt="">
</div>
<div id="move">
<div id="content">
<div>
<h1>Confirm our OTP</h1>
<img src="https://i.postimg.cc/k5yF6zDp/cap.png">
<h3>Enter number given in above image</h3>
<input id="num" type="text" placeholder="Enter Number" required>
<p>You can pay via cash or UPI enabled app at the time of delevery. Ask <br> your delevery executive for
these options.</p>
<button id="placeOrder">Place Order</button>
</div>
</div>
</div>
</body>
</html>
<script>
document.querySelector("#placeOrder").addEventListener("click",function(){
alert("Payment Successfully!")
window.location.href="./index.html"
})
</script>