This commit is contained in:
pikami 2016-06-20 18:39:39 +00:00
parent 045af4ac7e
commit cbb9b9964e
2 changed files with 18 additions and 8 deletions

View File

@ -1,3 +1,9 @@
<?php
if(isset($_GET["page"]) && $_GET["page"] == "login" && isset($_POST["type"]) && $_POST["type"]=="login"){
include_once "login.php";
die();
}
?>
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
@ -118,13 +124,14 @@ if (isset($_GET["page"])){
} else if($_GET["page"] == "login"){ } else if($_GET["page"] == "login"){
include_once "login.php"; include_once "login.php";
} else if($_GET["page"] == "logout"){ } else if($_GET["page"] == "logout"){
header("Location: login.php?logout=1"); echo '<center><h4>Please wait...</h4></center>';
die(); echo '<meta http-equiv="refresh" content="2;url=login.php?logout=1">';
die();
} else if($_GET["page"] == "signup"){ } else if($_GET["page"] == "signup"){
include_once "signup.php"; include_once "signup.php";
} else { } else {
$uid = $_GET["page"]; $uid = $_GET["page"];
include_once "ViewPaste.php"; include_once "ViewPaste.php";
} }
} else if (isset($_GET["user"])){ } else if (isset($_GET["user"])){
include_once "UserPage.php"; include_once "UserPage.php";

View File

@ -13,7 +13,8 @@ if(isset($_GET["logout"])){
LogOutUserBySession($_COOKIE["pp_sid"],$_COOKIE["pp_skey"]); LogOutUserBySession($_COOKIE["pp_sid"],$_COOKIE["pp_skey"]);
UnsetBrowserCookies(); UnsetBrowserCookies();
} }
header("Location: index.php"); echo '<center><h4>Please wait...</h4></center>';
echo '<meta http-equiv="refresh" content="2;url=index.php">';
} else if(isset($_POST["type"])) { } else if(isset($_POST["type"])) {
if($_POST["type"]=="login" && isset($_POST["user"]) && isset($_POST["pwd"])){ if($_POST["type"]=="login" && isset($_POST["user"]) && isset($_POST["pwd"])){
//Get options //Get options
@ -44,7 +45,8 @@ if(isset($_GET["logout"])){
setcookie("pp_sid", $sid); //Dies when browser closes setcookie("pp_sid", $sid); //Dies when browser closes
setcookie("pp_skey", $skey); //Dies when browser closes setcookie("pp_skey", $skey); //Dies when browser closes
} }
header("Location: index.php"); echo '<center><h4>Please wait...</h4></center>';
echo '<meta http-equiv="refresh" content="2;url=index.php">';
die(); die();
} }
else echo "No!"; //TODO: Wrong password else echo "No!"; //TODO: Wrong password
@ -78,7 +80,8 @@ if(isset($_GET["logout"])){
$stmt->bindParam(':user', $user); $stmt->bindParam(':user', $user);
$stmt->bindParam(':pwd', $hash); $stmt->bindParam(':pwd', $hash);
if($stmt->execute()){ if($stmt->execute()){
header("Location: login"); echo '<center><h4>Please wait...</h4></center>';
echo '<meta http-equiv="refresh" content="2;url=login">';
} else { } else {
echo "Fail!"; echo "Fail!";
} }