-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimesheet.php
More file actions
36 lines (31 loc) · 896 Bytes
/
Copy pathtimesheet.php
File metadata and controls
36 lines (31 loc) · 896 Bytes
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
<?php require_once 'controllers/session_check.php';?>
<?php require_once 'controllers/functions.php';?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'style.php';?>
<?php include 'script.php';?>
<title>Worker Portal</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body class="bg-light">
<div class="p-5">
<?php include 'navbar.php';?>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="pb-2 text-center">Your Weekly Timesheet</h1>
</div>
</div>
</div>
<div class="container-fluid pt-5" id="timesheet"><?php include 'borough_colors.php';?></div>
<script src="js/timesheet.js"></script>
<script type="text/javascript">
$(document).ready(function() {
populateTable(<?php echo getUID();?>);
});
</script>
</body>
</html>