-
Notifications
You must be signed in to change notification settings - Fork 4
/
approve-lecturer-leave-application.html
41 lines (36 loc) · 1.4 KB
/
approve-lecturer-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
<?php
include('inc/sessionPrincipal.inc.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Learn Center | Approve Leave Application</title>
<?php include('inc/header.inc.php'); ?>
<div class="body2">
<div class="main">
<!-- content -->
<?php $lecid=$_GET['lid'];?>
<div class="container">
<?php include('inc/connectdb1.inc.php');?>
<div class="clearfix">
<form method ='POST' action="inc/approveleaveprincipal.inc.php?lecid=<?php echo $lecid;?> ">
<label for="number"><b>Number of Days</b></label><br>
<input type="number" value="<?php echo $num ; ?>" readonly><br>
<label for="from"><b>Period of leave<br><t> From</b></label><br>
<input type="date" value="<?php echo $dfrom ; ?>" name="from" min="2015-01-01" max="2035-12-31" readonly><br>
<label for="to"><b><t> To</b></label><br>
<input type="date" value="<?php echo $dto ; ?>" name="to" min="2015-01-01" max="2035-12-31" readonly ><br>
<label for="reason"><b>Reason</b></label><br>
<input type="text" value="<?php echo $reason; ?>" readonly><br>
<button name= "approve" type="submit" class="signupbtn" name="apply" >Approve</button>
<button name= "reject" type="submit" class="cancelbtn" name="apply" >Reject</button>
</div>
</div>
</form>
<!-- content -->
<?php include('inc/footer.inc.php'); ?>
</div>
</div>
<script type="text/javascript">Cufon.now();</script>
</body>
</html>