-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment form.html
58 lines (58 loc) · 2.28 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
54
55
56
57
58
<!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>Lecture_3</title>
<link rel="stylesheet" href="/style_payment_form.css">
</head>
<body>
<header>
<h1><center>Student Fee Payment Form</center></h1>
<h4 style="text-align: right;">* Required fields</h4>
</header>
<main>
<form action="">
<section>
<br>
<h2>User Details</h2>
<br>
<p>Student Name: *<input type="text" placeholder="Student Name" name="name" required></p>
<p>Student Rollno. :*<input type="number" placeholder="Student Roll No." name="rollno" id="rollno" required></p>
<p>Gender: *
<input type="radio" name="gender" id="male" required>Male
<input type="radio" name="gender" id="female" readonly>Female </p>
<p>Date of Birth: *<input type="date" name="dob" id="dob" required></p>
<p>Student email: *<input type="email" placeholder="Student Email" name="email" id="email" required></p>
<p>Address: <textarea name="address" placeholder="Address" id="address" cols="50" rows="5"></textarea></p>
<br>
<br>
</section>
<hr style="color: white;">
<section>
<br>
<h2>Payment Details</h2>
<br>
<p>Card Type: *
<select name="card_type" id="card_type">
<option value="">Please select card type</option>
<option value="visa">Visa</option>
<option value="mastercard">MasterCard</option>
<option value="rupay">Rupay</option>
</select>
</p>
<p>Card Number: *<input type="number" placeholder="Card number" name="cardno" id="cardno" required> </p>
<p>CVV: *<input type="password" placeholder="CVV" name="cvv" id="cvv" required></p>
<p>Expiry Date: *<input type="date" placeholder="Expiry Date" name="exp_date" id="exp_date" required></p>
<br>
<br>
<br>
<button type="submit" >Pay Now</button>
<button type="reset">Reset</button>
<br>
</section>
</form>
</main>
</body>
</html>