-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanagerPage.html
More file actions
41 lines (38 loc) · 1.65 KB
/
managerPage.html
File metadata and controls
41 lines (38 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content = "IE=edge">
<link rel="stylesheet" href="/static/stylesheet1.css">
<title>Manager Page</title>
</head>
<body>
<!--Header with PTO Portal Logo-->
<header class ="logoHead">
<img class = "logo" src = "/static/images/ptoPortalLogo.png">
</header>
<!--Menu Bar-->
<ul class = "menu">
<li class = "menu"><a href="managerPage.html" class = "menu"> Manager Home </a></li>
<li class = "menu"><a href="ptoRequest.html" class = "menu"> PTO Requests </a></li>
<li class = "menu"><a href="employeeContact.html" class = "menu"> Employee Contact </a></li>
<li class = "menu"><a href="departmentRecords.html" class = "menu"> Department Records </a></li>
<li class = "menu"><a href="employeeRecords.html" class = "menu"> Employee Disciplinary Records </a></li>
</ul>
<div class = "center">
<h1><br>Manager Home Page</h1>
<h2>Page Features</h2>
</div>
<br>
<br>
<br>
<div class = "center">
<ul>
<li>PTO Requests Page is where you can view employee requests for time off.</li>
<li>Employee Contact Page is for searching employee contact information.</li>
<li>Department Records Page allows managers to search for all employees within their departments.</li>
</ul>
</div>
</body>
</html>