-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostLeave.html
37 lines (29 loc) · 1.04 KB
/
postLeave.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Leave Application</title>
<link rel="stylesheet" href="assets/postLeave.css">
</head>
<body>
<div class="container">
<h1>Post Leave </h1>
<form action="#">
<label for="designation">Designation:</label>
<input type="text" id="designation" name="designation" required>
<br><br>
<label for="fromDate">From Date:</label>
<input type="date" id="fromDate" name="fromDate" required>
<br><br>
<label for="toDate">To Date:</label>
<input type="date" id="toDate" name="toDate" required>
<br><br>
<label for="reason">Leave Reason:</label>
<textarea id="reason" name="reason" rows="4" required></textarea>
<br><br>
<input type="submit" value="Post Leave">
</form>
</div>
</body>
</html>