-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate_hol.php
executable file
·62 lines (54 loc) · 1.84 KB
/
create_hol.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mytravaly</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/js/gijgo.min.js" type="text/javascript"></script>
<link href="https://unpkg.com/[email protected]/css/gijgo.min.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!--Header part-->
<?php
include"user_header1.php";
?>
<div class="row">
<?php
include"sidebar.php";
?>
<div class="container">
<div class="row">
<div class="card col-md-12">
<div class="card-header"><h3><i class="far fa-edit"></i> Add New Holiday</h3></div>
<div class="card-body">
<form action="">
<div class="form-inline">
<label for="">Select a date</label>
<input type="text" placeholder="leave_date" required readonly class="dpicker" width= "250" style="margin: 0 0 0 20px; background: white;">
</div>
<div class="inline" style="margin: 20px 0 0 150px;">
<button class="btn btn-success">Create</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!--Footer part-->
<?php
//include"footer.php";
?>
</body>
</html>
<script>
$('.dpicker').datepicker({
uiLibrary: 'bootstrap4'
});
</script>