-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcard_payment.html
More file actions
77 lines (59 loc) · 2.66 KB
/
card_payment.html
File metadata and controls
77 lines (59 loc) · 2.66 KB
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
<!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-www.banggood.com</title>
<link rel="shortcut icon" href="https://www.banggood.in/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="card_payment.css">
</head>
<body>
<div class="brandlogo-container">
<img src="sprite (1).png" alt="" class="brandlogo-image">
<div class="paycenter-title">
<p class="text">Online <br>Payment</p>
</div>
<div class="securePayment">
<img src="icons8-security-shield-green-24.png" alt="" srcset="">
<p>Secure Payment</p>
</div>
</div>
<div class="container">
<form action="">
<!-- <legend>
<h1 class="main_heading">Payment Form</h1>
</legend>
<hr>
<h2>Contact Information</h2>
<p>Name: <input type="text" name="name" required placeholder="Your Name"></p>
<fieldset>
<legend>Gender</legend>
<p>
Male <input type="radio" name="gender" id="male" required> Female <input type="radio" name="gender" id="female" required>
</p>
</fieldset>
<p>Address: <textarea name="address" id="address" cols="30" rows="10"></textarea required></p>
<p>Email: <input type="email" name="email" id="email"required placeholder="email@gmail.com"></p>
<p>Pincode: <input type="number" name="number" id="number"required placeholder="248001"></p> -->
<legend>
<h2>Payment Information</h2>
</legend>
<hr>
<p>
Card Type: <select name="card_type" id="card_type" required onchange="cardType()">
<option value="">--Select a Card Type--</option>
<option value="visa">Visa</option>
<option value="upi">UPI</option>
<option value="payal">PayPal</option>
</select>
</p>
<p>Card Number: <input type="number" minlength="16" maxlength="16" name="card_number" id="card_number" required placeholder="123 456 789 101"></p>
<p>Expiration Date: <input type="date" name="exp_date" id="exp_date" required dd-mm-yyyy></p>
<p>CVV <input type="password" minlength="3" maxlength="3" limit="3" name="cvv" id="cvv" required placeholder="123"></p>
<input type="button" value="Pay Now" onclick="pay()">
</form>
</div>
</body>
</html>
<script src="card_payment.js"></script>