-
Notifications
You must be signed in to change notification settings - Fork 15
/
individual.html
173 lines (136 loc) · 7.08 KB
/
individual.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Individual Details</title>
<!-- link to css file -->
<link rel="stylesheet" type="text/css" href="organise.css">
<!-- Link of Fontawsm CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/loader.css">
<script src="https://www.gstatic.com/firebasejs/7.19.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.0/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.0/firebase-storage.js"></script>
</head>
<body>
<div class="pagewrap">
<div class="pagewrap-overlay"></div>
<div class="content">
<!-- ------------Header------------ -->
<header>
<div class="header-content">
<h1><span class="main-heading">Personal Details</span></h1>
</div>
<div class="slanted"></div>
</header>
<section class="sec">
<!-- ------------------Individual Form-------------------- -->
<form>
<!-- Full Name -->
<div class="form-group">
<label for="name">Full Name:</label>
<input type="text" name="name" id="name" class="form-control text"
placeholder=" Enter Full Name">
</div>
<!-- Address -->
<div class="form-group">
<label for="add">Address:</label>
<input type="text" name="add" id="add" class="form-control text" placeholder=" Enter Address">
</div>
<!-- Heighest Qualification -->
<div class="form-group">
<label for="qual">Heighest Qualification:</label>
<input type="text" name="qual" id="qual" class="form-control text"
placeholder=" Enter heighest Qualification">
</div>
<!-- Occupation -->
<div class="form-group">
<label for="occ">Occupation:</label>
<select id="occ" name="occ" class="form-control text">
<option id="status_0">Profession</option>
<option id="status_1">Employment</option>
<option id="status_2">Business</option>
</select>
</div>
<!------ Need of charity-------->
<div class="form-group">
<label>Need of Charity:</label>
<input type="text" name="need" id="need" class="form-control text"
placeholder=" Need of Charity">
</div>
<!-- Family Head -->
<div class="form-group">
<label>Family Head:</label>
<input type="text" name="head" id="head" class="form-control text"
placeholder=" Enter Family head">
</div>
<!-- Occupation of family head -->
<div class="form-group">
<label>Family Head Occupation:</label>
<input type="text" name="occhead" id="occhead" class="form-control text"
placeholder=" Enter the Occupation of Family Head">
</div>
<!-- Annual Income -->
<div class="form-group">
<label>Annual income:</label>
<input type="text" name="income" id="income" class="form-control text"
placeholder=" Enter Annual income (Should be less than 2LPA)">
</div>
<!-- Email ID -->
<div class="form-group">
<label>Email ID:</label>
<input type="email" name="email" id="email" class="form-control text"
placeholder=" Email ID (Optional)">
</div>
<!-- Contact No -->
<div class="form-group">
<label>Contact No:</label>
<input type="text" name="mobile_num" id="mobile_num" class="form-control text"
placeholder=" Enter Contact No">
</div>
<br>
<!-- -----------Paragraphs---------------- -->
<div>
<p id="paragraph1" class="para1">NOTE: For Verification of Contact number we will be sending you
OTP</p>
</div>
<br>
<div>
<p id="paragraph2" class="para2">Our Team will be Contacting You within 48 hours.</p>
</div>
<hr>
<!-- ------------Documents upload----------- -->
<div>
<h4 id="dochead">Mandatory to upload below documents:</h4>
<p id="docpara1" class="docs">1. Identity Proof (Any government proof</p>
<!-- Upload button -->
<input type="file" id="uploadbutton1" style="display:block" accept="image/*" value="Upload"
required>
<p id="docpara2" class="docs">2. Address Proof (LightBill / Aadhar Card / PAN Card / Driving
License)</p>
<!-- Upload button -->
<input type="file" id="uploadbutton2" style="display:block" accept="image/*" value="Upload"
required>
<p id="docpara3" class="docs">3. Annual Income Certificate (Present Year / Latest & Income
should be less than 2 LPA)</p>
<!-- Upload button -->
<input type="file" id="uploadbutton3" style="display:block" accept="image/*" value="Upload"
required>
<p id="docpara4" class="docs">4. Family Head ID Proof</p>
<!-- Upload button -->
<input type="file" id="uploadbutton4" style="display:block" accept="image/*" value="Upload"
required>
</div>
<br>
<hr>
</form>
</section>
<button id="submitbutton" onclick="org_reg()">Submit</button>
<div class="loading" id="loader">Loading…</div>
</div>
</div>
<script src="assets/js/ind.js"></script>
</body>
</html>