-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpayment.html
95 lines (87 loc) · 3.09 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
<!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 SECTION</title>
<link rel="stylesheet" href="payment.css">
</head>
<body>
<div id="home">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/Home-icon.svg/2048px-Home-icon.svg.png"
alt="" id="abc">
<p>Go Back To Homepage</p>
</div>
<h1 class="head">PAYMENT GATEWAY</h1>
<div id="body">
<div>
<div class="body-head">
<img src="https://in.sugarcosmetics.com/desc-images/Add_Address.svg" alt="">
<p>Add Delivery Address</p>
</div>
<div id="backtocart">x </div>
</div>
<div>
<div class="sperate">
<label for="name" class="quicksand">Full Name</label><br>
<input type="text" name="name" placeholder="Fullname" id="name_1">
</div>
<div class="sperate"><label for="number" class="quicksand">Mobile Number</label><br>
<input type="number" placeholder="Mobile Number" name="number" id="number_1">
</div>
</div>
<div>
<label for="Address" class="quicksand">
Address
</label><br>
<input type="text" placeholder="Address Line 1" id="address_line_1"><br>
<input type="text" placeholder="Address Line 2" id="address_line_2"><br>
<input type="number" placeholder="Zipcode" id="zip"><br>
<input type="text" placeholder="Country" id="country"><br>
<input type="text" placeholder="State" id="state"><br>
<input type="text" placeholder="City" id="city"><br>
</div>
<div>
<div id="next">Continue</div>
</div>
</div>
<div id="body_2">
<div>
<div>
<img src="https://cdn-icons-png.flaticon.com/512/858/858170.png" alt="">
<h3 class="quick">Bank Name</h3><br>
</div>
<select name="bank" id="bank_name">
<option value="">HDFC Bank</option>
<option value="">ICICI Bank</option>
<option value="">AXIS Bank</option>
<option value="">YES Bank</option>
<option value="">SBI Bank</option>
</select>
</div>
<div>
<div>
<h3 class="quick">Debit / Credit Card number</h3>
<input type="number" name="" id="card">
</div>
<div>
<h3 class="quick">CVV</h3>
<input type="number" id="cvv">
</div>
</div>
<div>
<h3 class="quick">Password</h3>
<input type="password" id="pass">
</div>
<div id="pay">
PAY
</div>
</div>
<div id="body_3">
<h1>Payment Successful</h1>
<div id="home_1">GO Back to Home</div>
</div>
</body>
</html>
<script src="payment.js"></script>