-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (32 loc) · 728 Bytes
/
index.php
File metadata and controls
37 lines (32 loc) · 728 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
37
<!DOCTYPE html>
<html>
<head>
<title>My Simple Project Management | phpGrid</title>
</head>
<body>
<style>
.centered {
margin: 0;
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
text-align:center;
}
.footer {
position: fixed;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
background-color: #efefef;
text-align: center;
}
</style>
<div class="centered">
<h1>My Simple Project Management</h1>
<a href="manager/clients.php" target="_new">Login as manager</a> | <a href="employee/tasks.php" target="_new">Login as employee</a>
</div>
<div class="footer"><strong>Build-From-Scratch Series</strong> | phpGrid © <?php echo date('Y'); ?>.</div>
</body>
</html>