-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment_form.html
53 lines (50 loc) · 1.77 KB
/
payment_form.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
<!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 FORM</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form action="">
<h1>Payment Form</h1>
<p>Required fields are followed by *</p>
<h2>Contact information</h2>
<p>Name : * <input type="text" name="name" required></p>
<fieldset>
<legend>
GENDER *
</legend>
<p>
Male <input type="radio" name="gender" id="male" required>
Female <input type="radio" name="gender" id="group" required>
</p>
</fieldset>
<p>Address : <textarea name="address" id="address" cols="70" rows="30"></textarea></p>
<p>Email * : <input type="email" name="email" id="email" required></p>
<p>Pincode * : <input type="pincode" name="number" id="pincode" required></p>
<hr>
<h2>Payment Information</h2>
<p>Card Type * :
<select name="card_type" id="card_type" required>
<option value="">----Select a card type----</option>
<option value="visa">Visa</option>
<option value="rupay">Rupay</option>
<option value="mastercard">Mastercard</option>
</select>
</p>
<p>
Card Number * : <input type="number" name="cardnumber" id="cardnumber" required>
</p>
<p>
Expiratioin Date * : <input type="date" name="exp_date" id="exp_date" required>
</p>
<p>
CVV * : <input type="password" name="cvv" id="CVV" required>
</p>
<input type="submit" value="Pay now">
</form>
</body>
</html>