-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexEmployee.php
32 lines (28 loc) · 1.15 KB
/
indexEmployee.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
<!-- Homepage with links to each option -->
<?php include "templates/header.php"; ?>
<div>
<ul>
<li>
<img src="https://image.flaticon.com/icons/svg/1665/1665746.svg">
<h3> <a href="createEmployee.php"><strong>Manage Employees</strong></a> </h3>
<p>Add, Update, View, and Delete Employee</p>
</li>
<li>
<img src="https://image.flaticon.com/icons/svg/1665/1665746.svg" >
<h3> <a href="createSalaries.php"><strong>Manage Salaries</strong></a> </h3>
<p>Add, Update, View, and Delete Salaries</p>
</li>
<li>
<img src="https://image.flaticon.com/icons/svg/1665/1665746.svg">
<h3><a href="createMaintenance.php"><strong>Manage Housekeeping</strong></a></h3>
<p>Add, Update, View, and Delete Housekeeping and Maintenance Records</p>
</li>
<li>
<img src="https://image.flaticon.com/icons/svg/1665/1665746.svg" >
<h3><a href="createLifeGuard.php"><strong>Manage Lifeguards and Instructors</strong></a></h3>
<p>Add, Update, View, and Delete Lifeguards/Instructors</p>
</li>
</ul>
</div>
<a href="index.php">Back to Management</a>
<?php include "templates/footer.php"; ?>