initial commit

This commit is contained in:
Luke Ogburn
2019-03-30 23:03:43 -04:00
commit 3d9e0c7717
29 changed files with 740 additions and 0 deletions

7
user/signout.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
require "/home/lukeuxao/public_html/500/global.php";
setcookie("500ID", "", time()-3600, "/500", NULL, true, true);
setcookie("500KEY", "", time()-3600, "/500", NULL, true, true);
setcookie("500TOKEN", "", time()-3600, "/500", NULL, true, true);
header("Location: signin.php");
?>