-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPayment_of_Gratitude.html
More file actions
286 lines (260 loc) · 10.8 KB
/
Payment_of_Gratitude.html
File metadata and controls
286 lines (260 loc) · 10.8 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Payment of Gratuity</title>
<link rel="stylesheet" href="nom.css" />
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<div class="navbar-left">
<span class="icon" title="Home"><i class="fa-solid fa-house"></i></span>
</div>
<div class="navbar-center">
<h2>Joining Form</h2>
</div>
<div class="navbar-right"></div>
</div>
<!-- Form Section -->
<div class="form-section">
<h3>Payment of Gratuity</h3><br>
<form></form>
<div class="sub-heading">[SEE SUB-RULE (1) OF RULE 6]</div><br>
To <input type="text" class="inline-input" placeholder="Enter name" /> TEAM1 CONSULTING PRIVATE LIMITED <input type="text" class="inline-input" placeholder="Enter address of establishment" style="width: 400px;"/>.
<br><br>
[Give here name or description of the establishment with full address]
</p><br><br>
<div class = "form-row">
<div class="form-group">
<ol>
<li>Shri/Shrimati/Kumari <input type="text" class="inline-input" placeholder="Enter name" /> whose particulars are given in the statement below, hereby nominate the person(s) mentioned below to receive the gratuity payable after my death as also the gratuity standing to my credit in the event of my death before that amount has become payable, or having become payable has not been paid and direct that the said amount of gratuity shall be paid in proportion indicated against the name(s) of the nominee(s). </li><br>
<li>I hereby certify that the person(s) mentioned is a/are member(s) of my family within the meaning of clause (h) of section (2) of the Payment of Gratuity Act, 1972.</li><br>
<li>I hereby declare that I have no family within the meaning of clause (h) of section (2) of the said Act.</li><br>
<li> (a) My father/mother/parents is/are not dependent on me.</li><br>
<li> (b) My husband's father/mother/parents is/are not dependent on my husband.</li><br>
<li>I have excluded my husband from my family by a notice dated the to the Controlling
authority in terms of the provision to clause (h) of section 2 of the said Act.</li><br>
<li>Nomination made herein invalidates my previous nomination.</li><br>
</ol>
</div>
</div>
<br>
<h3>Nominee Details</h3>
<div class="table-container">
<table class="employment-table" id="nomineeTable" >
<thead>
<tr>
<th>Name and Address of Nominee</th>
<th>Relationship with Employee</th>
<th>DOB of Nominee</th>
<th>Share (%)</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" name="NameAndAddress[]" placeholder="Enter nominee name"/></td>
<td><input type="text" name="Relationship[]" placeholder="Enter relation"/></td>
<td><input type="date" name="Age[]" placeholder="Enter nominee DOB"/></td>
<td><input type="text" name="Share[]" placeholder="Enter share percentage"/></td>
<td>
<button type="button" class="add-row" onclick="addNomineeRow()">+</button>
</td>
</tr>
</tbody>
</table>
</div>
<br>
<script>
// Remove a row
function removeRow(button) {
const row = button.closest("tr");
row.remove();
}
// Add a Nominee row
function addNomineeRow() {
const table = document.querySelector("#nomineeTable tbody");
const newRow = document.createElement("tr");
newRow.innerHTML = `
<td><input type="text" name="NameAndAddress[]" /></td>
<td><input type="text" name="Relationship[]" /></td>
<td><input type="date" name="Age[]" /></td>
<td><input type="text" name="Share[]" /></td>
<td>
<button type="button" class="remove-row" onclick="removeRow(this)">-</button>
</td>
`;
table.appendChild(newRow);
}
</script>
<br>
<center><h3>Statement</h3></center>
<br>
<div class="form-row">
<div class="form-group">
<label for="firstName">First Name <span class="required">*</span></label>
<input type="text" id="firstName" name="firstName" placeholder="First name" required style="width: 300px;"/>
</div>
<div class="form-group">
<label for="middleName">Middle Name</label>
<input type="text" id="middleName" name="middleName" placeholder="Middle name" style="width: 300px;"/>
</div>
<div class="form-group">
<label for="lastName">Last Name <span class="required">*</span></label>
<input type="text" id="lastName" name="lastName" placeholder="Last name" required style="width: 300px;"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="gender">Sex</label>
<select id="gender" name="gender">
<option value="">Select Sex</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<label for="religion">Religion</label>
<input type="text" id="religion" name="religion" placeholder="Enter religion" style="width: 600px;" />
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="maritalStatus">Marital Status</label>
<select id="maritalStatus" name="maritalStatus">
<option value="">Select Marital Status</option>
<option value="single">Single</option>
<option value="married">Married</option>
<option value="divorced">Divorced</option>
<option value="widowed">Widowed</option>
</select>
</div>
<div class="form-group">
<label for="department">Department/Branch/Section where employed</label>
<input type="text" id="department" name="department" placeholder="Enter Department" style="width: 600px;"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="post">Post held with Ticket or Serial No. , if any</label>
<input type="text" id="post" name="post" style="width: 600px;"/>
</div>
<div class="form-group">
<label for="date">Date of appointment</label>
<input type="date" id="date" name="date" style="width: 600px;"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="address">Permanent Address</label>
<input type="text" id="address" name="address" placeholder="Enter permanent address" style="width: 800px;"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="village">Village</label>
<input type="text" id="village" name="village" placeholder="Enter village" style="width: 300px;"/>
</div>
<div class="form-group">
<label for="thana">Thana</label>
<input type="text" id="thana" name="thana" placeholder="Enter thana" style="width: 300px;"/>
</div>
<div class="form-group">
<label for="subdivision">Sub-division</label>
<input type="text" id="subdivision" name="subdivision" placeholder="Enter subdivision" style="width: 300px;"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="postoffice">Post office</label>
<input type="text" id="postoffice" name="postoffice" placeholder="Enter postoffice" style="width: 300px;"/>
</div>
<div class="form-group">
<label for="district">District</label>
<input type="text" id="district" name="district" placeholder="Enter district" style="width: 300px;"/>
</div>
<div class="form-group">
<label for="state">State</label>
<input type="text" id="state" name="state" placeholder="Enter state" style="width: 300px;"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="Place">Place</label>
<input type="text" id="Place" name="Place" placeholder="Enter place" style="width: 400px;"/>
</div>
<div class="form-group">
<label for="date">Date<span class="file-note">(DD/MM/YYYY)</span><span class="required">*</span></label>
<input type="date" id="date" name="date" required placeholder="DD/MM/YYYY" style="width: 400px;"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="photoUpload1">Signature of Employee<span class="file-note">(PDF, JPEG, PNG)</span><span class="required" >*</span></label>
<input type="file" id="photoUpload1" name="photoUpload1" accept=".pdf, .jpg, .jpeg, .png" style="width: 50%"/>
</div>
</div>
<br>
<br>
<center><h3>Declaration By Witnesses</h3></center>
<br><br>
<div class="form-row">
<div class="form-group">
<label for="name">1. Name of witness</label>
<input type="text" id="name" name="name" placeholder="Enter name of witness" style="width: 400px;"/>
</div>
<div class="form-group">
<label for="photoUpload1">Signature of Witness<span class="file-note">(PDF, JPEG, PNG)</span><span class="required" >*</span></label>
<input type="file" id="photoUpload1" name="photoUpload1" accept=".pdf, .jpg, .jpeg, .png" style="width: 50%"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="name">2. Name of witness</label>
<input type="text" id="name" name="name" placeholder="Enter name of witness" style="width: 400px;"/>
</div>
<div class="form-group">
<label for="photoUpload1">Signature of Witness<span class="file-note">(PDF, JPEG, PNG)</span><span class="required" >*</span></label>
<input type="file" id="photoUpload1" name="photoUpload1" accept=".pdf, .jpg, .jpeg, .png" style="width: 50%"/>
</div>
</div>
<br>
<br>
<center><h3>Acknowledgement by the employee</h3></center>
<br><br>
<p>Received the duplicate copy of nomination in Form 'F' filed by me and duly certified by the employer.</p>
<br>
<div class="form-row">
<div class="form-group">
<label for="date">Date<span class="file-note">(DD/MM/YYYY)</span><span class="required">*</span></label>
<input type="date" id="date" name="date" required placeholder="DD/MM/YYYY" style="width: 400px;"/>
</div>
<div class="form-group">
<label for="photoUpload1">Signature of Employee<span class="file-note">(PDF, JPEG, PNG)</span><span class="required" >*</span></label>
<input type="file" id="photoUpload1" name="photoUpload1" accept=".pdf, .jpg, .jpeg, .png" style="width: 50%"/>
</div>
</div>
</div>
<div class="form-buttons">
<a href="newform.html">
<button type="button" class="back-btn">Back</button>
</a>
<a href="medical.html">
<button type="submit" class="submit-btn">Save and Next</button>
</a>
</div>
<script>
const form = document.querySelector('form');
form.addEventListener('submit', function (e) {
e.preventDefault(); // prevent default form behavior
// Optional: Validate and send data using fetch()
// Then redirect
window.location.href = 'medical.html';
});
</script>
</form>
</body>
</html>