-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpayslip.html
30 lines (30 loc) · 1.04 KB
/
payslip.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
<!DOCTYPE html>
<html lang="en">
<title>Employee payslip</title>
<body>
<div class="w3-container" style="padding: 50px 200px 20px 200px">
<form class="w3-container" action="employee-payslipshow.php" method="post">
<p>
<label>Select Year</label>
<input class="w3-input w3-light-grey w3-animate-input" type="number" name="year"></p>
<p> <label>Select Month</label>
<select class="w3-input w3-light-grey w3-animate-input" name="month">
<option value="january">january</option>
<option value="february">february</option>
<option value="march">march</option>
<option value="april">april</option>
<option value="may">may</option>
<option value="june">june</option>
<option value="july">july</option>
<option value="august">august</option>
<option value="september">september</option>
<option value="october">october</option>
<option value="november">november</option>
<option value="december">december</option>
</select>
</p>
<input type="submit" value="generate" class="w3-input w3-green w3-round-xxlarge w3-animate-input w3-hover-blue">
</form>
</div>
</body>
</html>