Interaction between login and panel #17

Merged
PootisPenserHere merged 4 commits from interactionBetweenLoginAndPanel into master 2018-08-12 16:08:55 +00:00
2 changed files with 18 additions and 0 deletions
Showing only changes of commit cb5d30b4e0 - Show all commits

View File

@ -1,3 +1,12 @@
<?php
session_start();
if(!isset($_SESSION['userName'])){
header("Location: ./login.php");
exit();
}
?>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="../css/bootstrap.min.css">

View File

@ -1,3 +1,12 @@
<?php
session_start();
if(isset($_SESSION['userName'])){
header("Location: ./landing.php");
exit();
}
?>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="../css/bootstrap.min.css">