-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpayment.html
80 lines (72 loc) · 2.47 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
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;0,700;1,300&family=Ubuntu:wght@500&display=swap"
rel="stylesheet" />
<title>Payment</title>
<link rel="icon" href="https://www.banggood.in/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./styles/payment.css">
</head>
<body>
<div class="top">
<div class="nav">
<div class="nav1 bg">
<a href="./index.html"><img src="https://css.banggood.in/web/src/img/login/logo.png?v=4bb0729" alt="" /></a>
</div>
</div>
</div>
<!-- end of nav -->
<form id="form">
<h1>Payment page</h1>
<div id="select">
<div>
<input type="radio" id="html" name="fav_language" value="HTML">
<label for="html">UPI</label><br>
</div>
<div>
<input type="radio" id="css" name="fav_language" value="CSS">
<label for="css">CREDIT CARD / DEBIT CARD</label><br>
</div>
<div>
<input type="radio" id="javascript" name="fav_language" value="JavaScript">
<label for="javascript">COD</label>
</div>
</div>
</form>
<div id="pay">
<div id="upi">
<h3>Enter Your Upi</h3>
<input type="text" placeholder="eg:908xxxxx@ybl">
</div>
<div id="card">
<h3>Card Details</h3>
<input id="cardNumber" type="number" placeholder="Card Number" />
<input id="cvv" type="cvv" placeholder="CVV hint" />
<input id="expiry" type="date" placeholder="Expiry Month hint : 01/26" />
<input id="name" type="text" placeholder="Enter Your Name" />
</div>
<div id="cod"></div>
</div>
<button id="order">Confirm Order</button>
<!-- Footer start -->
<div class="footer">
<div class="footer1">
<span> About Banggood.com |</span>
<span> Terms And Conditions |</span>
<span> Privacy Policy |</span>
<span> Help Center </span>
</div>
<div class="footer2">
<p>Copyright © 2006-2022 Banggood All Rights Reserved.</p>
</div>
</div>
<!-- footor end -->
</body>
</html>
<script src="./scripts/payment.js"></script>