Visual improvements

This commit is contained in:
William Miceli
2019-12-03 23:53:43 -05:00
parent e93827e46f
commit 2b11c3339a
6 changed files with 34 additions and 19 deletions

View File

@@ -0,0 +1,6 @@
<?php
// If session has expired, or the user has not logged in
if(!isset($_SESSION['loggedInUser'])){
header('Location: /login.php');
}
?>