-
Notifications
You must be signed in to change notification settings - Fork 4
/
leave-application.html
43 lines (36 loc) · 1.41 KB
/
leave-application.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
<?php
include('inc/sessionStudent.inc.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Learn Center | Apply For Leave</title>
<?php include('inc/header.inc.php'); ?>
<div class="body2">
<div class="main">
<!-- content -->
<form style="border:1px solid #ccc" method ='POST' action="inc/leaveformdb.inc.php">
<div class="container">
<h2 class="pad_bot1">Apply For Leave </h2>
<p>Please fill in this form to apply for leave</p>
<hr>
<label for="number"><b>Number of Days</b></label><br><br>
<input type="number" placeholder="Enter Number of days" name="number_days" required><br><br>
<label for="from"><b>Period of leave<br><t> From</b></label><br>
<input type="date" placeholder="Enter Starting Date of Period of Leave" name="from" min="2018-07-11" max="2019-12-31" required><br>
<label for="to"><b><t> To</b></label><br>
<input type="date" placeholder="Enter Ending Date of Period of Leave" name="to" min="2018-07-12" max="2020-12-31" required><br><br>
<label for="reason"><b>Reason</b></label><br>
<input type="text" placeholder="Enter Reason" name="reason" required><br>
<div class="clearfix">
<button name= "submit" type="submit" class="signupbtn" name="apply" >Submit Application</button>
</div>
</div>
</form>
<!-- content -->
<?php include('inc/footer.inc.php'); ?>
</div>
</div>
<script type="text/javascript">Cufon.now();</script>
</body>
</html>