initial commit

This commit is contained in:
Luke Ogburn
2019-03-30 22:43:34 -04:00
commit c4a666e3b6
78 changed files with 5332 additions and 0 deletions

9
user/finishLogout.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
if(!isset($_COOKIE['IB_ID']) && !isset($_COOKIE['IB_SESSION'])){
header("Location: /");
}else{
reportError("Error in /user/finishLogout.php");
msg("There was an error logging you out. It has been reported.");
header("Location: /");
}
?>