This page was made as a personal project in connection with an educational exercise.
This is NOT the official site of the company or brand identified on the page. The creator of this page is NOT affiliated with the company or brand in any way. DO NOT enter any personal information (such as logins, passwords or credit card numbers) on this site.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.html
135 lines (129 loc) · 3.99 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
<!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>Payment</title>
<link
rel="icon"
href="https://lh3.googleusercontent.com/RllZf42XounX60rftJqa0K3EfoCMmzGqdOgbZvtQiPETcOVaes8cw1bEeBhW7UGeNb0=h200"
type="image/x-icon"
/>
<link rel="stylesheet" href="payment.css" />
<script
src="https://kit.fontawesome.com/eed82eddcd.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div id="nav">
<div id="img">
<a href="index.html"
><img
src="https://adn-static1.nykaa.com/media/wysiwyg/Payments/desktop-icons/nykaa-logo.svg"
alt=""
/></a>
</div>
<div id="singup">
<div>
<i class="fa-solid fa-check"></i>
</div>
<h3>sign up</h3>
</div>
<div id="addres_nav">
<div>
<i class="fa-solid fa-check"></i>
</div>
<h3>Address</h3>
</div>
<div id="payment">
<div>
<i class="fa-solid fa-pencil"></i>
</div>
<h3>Payment</h3>
</div>
</div>
<div id="payment_board">
<h1>Choose payment method</h1>
<p>Choose the payment method you prefer</p>
<div id="Choose">
<h2>payment mothods</h2>
<div id="select-way">
<div id="choose-way">
<div class="card-way">
<h4>Credit/Debit Card</h4>
<p>Visa, Mastercard, Rupay & more</p>
</div>
<div class="upi-way">
<h4>UPI</h4>
<p>Google Pay, PhonePe, Paytm & more</p>
</div>
</div>
<div class="cards-box">
<div class="card card1">
<h3>One card for all Nykaa apps</h3>
<hr />
<input type="text" id="card-number" placeholder="Card-Number" />
<div>
<input
type="text"
id="card-expiry"
placeholder="Expiry(MM/YY)"
/>
<input type="text" id="cvv" placeholder="CVV" />
</div>
<button class="paynow">Pay Now</button>
</div>
<div class="card card2">
<h3>Pay With UPI</h3>
<hr />
<p>1. Select UPI App</p>
<div id="select-app">
<div>
<div class="img1">
<img
src="https://adn-static1.nykaa.com/media/wysiwyg/Payments/fashion_icons/googlePay.svg"
alt=""
/>
</div>
<p>Google Pay</p>
</div>
<div>
<div class="img2">
<img
src="https://adn-static1.nykaa.com/media/wysiwyg/Payments/UPImWeb/PhonePe.svg"
alt=""
/>
</div>
<p>PhonePe</p>
</div>
<div>
<div class="img3">
<img
src="https://adn-static1.nykaa.com/media/wysiwyg/Payments/UPImWeb/Paytm.svg"
alt=""
/>
</div>
<p>Paytm</p>
</div>
<div>
<div class="img4">
<img
src="https://adn-static1.nykaa.com/media/wysiwyg/Payments/UPImWeb/UPI-Logo-vector%201.svg"
alt=""
/>
</div>
<p>Other UPI</p>
</div>
</div>
<input type="text" id="upinum" placeholder="Enter UPI Id" />
<button class="paynow1">Pay Now</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="payment.js"></script>