forked from AndrewCawthon/COSC481W-Team3-FinalProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathManagertimeoffRequests.html
57 lines (57 loc) · 1.56 KB
/
ManagertimeoffRequests.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Time Off Requests</title>
<script type="text/javascript" src="adminRequests.js"></script>
<style>
*{
text-decoration: none;
padding: 5;
}
a {
color: blue;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
header{
height: 70px;
width: 100%;
position: fixed;
display: flex;
justify-content: flex-end;
border-bottom: 1px black solid;
background-color: rgb(252, 251, 251);
}
.imgs{
display: block;
margin-left: auto;
margin-right: auto;
}
td {
padding-right: 10px;
text-align: center;
}
@media screen and (max-width: 480px) {}
</style>
</head>
<body>
<button style="width:100px; height:30px" onclick="location.href = 'welcomeToTheManagerPortalPage.html'">Home</button>
<h1>Time Off Requests</h1>
<h3>Have to submit changes before leaving page</h3>
<div id="requestsPending">
<form action="/adminRequests.html" method="post">
<table id="requests">
<script>setTable("requests")</script>
<script>addRow()</script>
</table>
<br>
<button type="submit" onclick="onSubmit()">Submit Changes</button>
</form>
</div>
</body>
</html>