-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincome.html
57 lines (55 loc) · 2.1 KB
/
income.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Income</title>
<!--css-->
<link rel="stylesheet" href="reg.css">
<!--icon css-->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.8/css/line.css">
</head>
<body>
<div class="container">
<header>Admission Form</header>
<form action="#">
<div class="form first">
<div class="details personal">
<span class="title">Income Details</span>
<div class="fields">
<div class="input-field">
<label>Families Annual Income</label>
<input type="number" placeholder="Enter Annual Income">
</div>
<div class="input-field">
<label>Income Certificate Number</label>
<input type="text" placeholder="Enter Certificate Number" >
</div>
<div class="input-field">
<label>Issuing Authority</label>
<input type="text" placeholder="Enter Designation">
</div>
<div class="input-field">
<label>Date Of Issue</label>
<input type="date" placeholder="Enter You email">
</div>
<div class="input-field">
<label>Valid Upto</label>
<input type="date" placeholder="Enter You email">
</div>
<div class="input-field">
<label>Upload Certificate</label>
<input type="file" placeholder="Enter You Number">
</div>
</div>
</div>
<div class="btn">
<a href="religion-details.html">Back</a>
<a href="#">Save</a>
<a href="domicile.html">Next</a>
</div>
</div>
</form>
</div>
</body>
</html>