-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeneficiary-form.html
36 lines (33 loc) · 1.49 KB
/
beneficiary-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beneficiary Form</title>
</head>
<body>
<form>
<div class="form-group">
<label for="beneficiaryName">Beneficiary Name:</label>
<input type="text" class="form-control" id="beneficiaryName" required>
</div>
<div class="form-group">
<label for="schoolName">Beneficiary School Name:</label>
<input type="text" class="form-control" id="schoolName" required>
</div>
<div class="form-group">
<label for="guardianName">Father/Mother/Guardian Name:</label>
<input type="text" class="form-control" id="guardianName" required>
</div>
<div class="form-group">
<label for="aadharDoc">Beneficiary ID (Aadhar Document Upload):</label>
<input type="file" class="form-control-file" id="aadharDoc" accept=".pdf, .jpg, .jpeg, .png" required>
</div>
<div class="form-group">
<label for="marksSheet">Beneficiary Marks Sheet (Document Upload):</label>
<input type="file" class="form-control-file" id="marksSheet" accept=".pdf, .jpg, .jpeg, .png" required>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</body>
</html>