-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment_form.html
46 lines (46 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment form</title>
</head>
<link rel="stylesheet" href=" form.css">
<body>
<form>
<h1>Payment form</h1>
<h2>Contact information</h2>
<p>Name: <input type="text" name="name" required></p>
<fieldset>
<p>
male:<input type="radio" name="gender">
female:<input type="radio" name="gender">
other:<input type="radio" name="gender">
</p>
</fieldset>
<P>Address: <textarea name="Address" id="Address" cols="150" rows="7"></textarea> </P>
<p> Email: <input type="email" name="email" id="email"> </p>
<p> Pincode: <input type="number" name="pincode" id="pincode"></p>
<h2>Payment information</h2>
<p>card type:
<select name="card_type" id="card_type">
<option value="">__select a card type__</option>
<option value="visa">visa</option>
<option value="rupay">rupay</option>
<option value="master card">master card</option>
<option value="bhim pay">bhim pay</option>
</select>
</p>
<p>
card number <input type="number" name="card number" id="card number">
</p>
<p>
card expiration date <input type="date" name="expiry date" id="expiry date">
</p>
<p>
CVV <input type="password" name="cvv" id="cvv">
</p>
<input type="submit" value="pay now">
</form>
</body>
</html>