-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadvancedSearchForm.php
More file actions
119 lines (82 loc) · 3.55 KB
/
advancedSearchForm.php
File metadata and controls
119 lines (82 loc) · 3.55 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<?php include("include/HeadTagTemplate.php"); ?>
<body>
<header class="dashboard_sidebar closeNav">
<?php include("include/navBar.php"); ?>
</header>
<article>
<div class="container-fluid pt-3">
<div class="row">
<div class="col">
<h1>Welcome to Employees Management System! 👋</h1>
</div>
</div>
</div>
<hr/>
<div class="container-fluid pt-3">
<div class="row">
<div class="col-lg-8 ">
<div class="blue_bg p-3 m-2">
<div class="search_area">
<form method="GET" id="searchForm">
<div class="searchForm" >
<input type="text" placeholder="Search by..." name="search_word">
<button type="submit"><i class='bx bx-search-alt'></i></button>
</div>
<select name="searchByList" id="searchByList" >
<option value="">Choose option</option>
<option value="StaffName" selected>Staff Name</option>
<option value="Department">Department</option>
<option value="Position">Position</option>
</select>
</form>
</div>
<div class="search_result_employee">
<?php include("include/searchedResult.php"); ?>
</div>
</div>
</div>
<?php include("include/statistic.php"); ?>
<div class="col-lg-4 ">
<div class="blue_bg p-3 m-2">
<p class="grey_word big">Statistic</p>
<div class="row">
<div class="col test">
<div class="testsss">
<div class="circle">
<p><?php echo $totalEmployee; ?><br/><span>people</span></p>
</div>
</div>
</div>
</div>
<hr/>
<p class="grey_word big">Total Job</p>
<div class="row my-2">
<div class="col-lg m-2 p-3 black_bg">
<p>Total</p>
<p><?php echo $totalEmployee; ?></p>
</div>
<div class="col-lg m-2 p-3 black_bg">
<p>Full Time</p>
<p><?php echo $totalFullTimeEmployee; ?></p>
</div>
</div>
<div class="row my-2">
<div class="col-lg m-2 p-3 black_bg">
<p>Part Time</p>
<p><?php echo $totalPartTimeEmployee; ?></p>
</div>
<div class="col-lg m-2 p-3 black_bg">
<p>Contract</p>
<p><?php echo $totalContractEmployee; ?></p>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<script src="javascript/nav.js"></script>
</body>
</html>