Skip to content

Commit a31344b

Browse files
committed
Index page
1 parent d513e67 commit a31344b

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

index.php

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>My Simple Project Management | phpGrid</title>
5+
</head>
6+
<body>
7+
8+
<style>
9+
.centered {
10+
margin: 0;
11+
position: absolute;
12+
top: 45%;
13+
left: 50%;
14+
transform: translate(-50%, -50%);
15+
text-align:center;
16+
}
17+
.footer {
18+
position: fixed;
19+
right: 0;
20+
bottom: 0;
21+
left: 0;
22+
padding: 1rem;
23+
background-color: #efefef;
24+
text-align: center;
25+
}
26+
</style>
27+
28+
<div class="centered">
29+
<h1>My Simple Project Management</h1>
30+
31+
<a href="manager/clients.php">Login as manager</a> | <a href="employee/tasks.php">Login as employee</a>
32+
</div>
33+
34+
<div class="footer"><strong>Build-From-Scratch Series</strong> | phpGrid &copy; <?php echo date('Y'); ?>.</div>
35+
36+
</body>
37+
</html>

0 commit comments

Comments
 (0)