This repository was archived by the owner on Feb 27, 2023. It is now read-only.
forked from DmitriyKom/ABCDY
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanager.php
More file actions
57 lines (52 loc) · 1.27 KB
/
Copy pathmanager.php
File metadata and controls
57 lines (52 loc) · 1.27 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
<?php
session_start();
if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
header("location: login.php");
exit;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Welcome</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
<style type="text/css">
body{ font: 14px sans-serif; text-align: center; }
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 75%;
}
td, th {
border: 1px solid #dddddd;
text-align: center;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<div class="page-header">
<h1>Hi, <b><?php echo htmlspecialchars($_SESSION["username"]); ?></b>. Welcome to the Manager Portal.</h1>
<br><br>
<table align="center">
<tr>
<th>Report Name</th>
<th>Link To Training</th>
</tr>
<tr>
<td>Employees Training Past Due</td>
<td> <a href="">Click here to view the report</a> </td>
</tr>
<td>Up Comming Training</td>
<td> <a href="">Click here to view the report</a> </td>
</table>
</div>
<p>
<a href="index.php" class="btn btn-danger">Sign Out of Your Account</a>
</p>
</body>
</html>