-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.html
132 lines (125 loc) · 2.89 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
<!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>100% Organic & Natural Skin Care Products Online in India</title>
<link rel="shortcut icon" href="favicon-32x32.png" type="image/x-icon" />
<style>
#paymentpagelogo {
width: 20%;
height: 80px;
margin: auto;
border: 1px solid transparent;
}
#paymentinfo {
text-align: center;
font-family: sans-serif;
font-size: 35px;
color: #8f9365;
margin-top: 2%;
}
#paymentinputs {
border: 1px solid transparent;
margin: auto;
height: 450px;
width: 70%;
margin-left: 27%;
}
.paymentinputtag {
width: 35%;
height: 45px;
margin: auto;
margin-left: 14%;
border-radius: 5px;
border: 1px solid #dddddd;
}
#paynow {
width: 12%;
height: 45px;
border-radius: 5px;
margin-left: 3%;
background-color: darkslateblue;
color: white;
border: 0;
}
#paynow:hover {
background-color: #2d095f;
}
</style>
</head>
<body>
<div id="paymentpagelogo">
<a href="#"
><img
style="width: 100%; height: 100%"
src="https://www.mytheresa.com/skin/frontend/mytheresa/default/images/logo.png?v=20211221T175655"
alt="juicychemistry"
/></a>
</div>
<br />
<br />
<hr style="margin: auto" />
<p id="paymentinfo">Payment Information</p>
<div id="paymentinputs">
<p
style="
margin-left: 14%;
font-size: 20px;
color: maroon;
font-family: sans-serif;
"
>
Enter your debit/credit card number
</p>
<input
class="paymentinputtag"
id="cardn"
type="number"
placeholder="Debit/credit card number"
/>
<br />
<p
style="
margin-left: 14%;
font-size: 20px;
color: maroon;
font-family: sans-serif;
"
>
Enter expiry date
</p>
<input
style="width: 22%"
class="paymentinputtag"
type="text"
placeholder="MM/YY"
/>
<br />
<p
style="
margin-left: 14%;
font-size: 20px;
color: maroon;
font-family: sans-serif;
"
>
Enter CVV
</p>
<input
style="width: 22%"
class="paymentinputtag"
id="cvvn"
type="password"
placeholder="CVV"
/>
<button onclick="paymentSuccess()" id="paynow">Pay now</button>
</div>
</body>
</html>
<script>
function paymentSuccess() {
window.location.href = "success.html";
}
</script>