blocked shopping.php for non-logged in user
This commit is contained in:
parent
8f34787d50
commit
e3a9def0db
@ -25,7 +25,6 @@ $result = query_username($conn, $userName);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
$row = $result->fetch_assoc();
|
||||
$_SESSION['username'] = $userName;
|
||||
|
||||
$passWord_hashed = $row["C_Password"];
|
||||
$passWord_correct = password_verify($passWord_user, $passWord_hashed);
|
||||
@ -45,6 +44,7 @@ if ($result->num_rows > 0) {
|
||||
|
||||
// if($response->success){
|
||||
// echo "Verification success.";
|
||||
// $_SESSION['username'] = $userName;
|
||||
// header("Location: shopping.php");
|
||||
// } else {
|
||||
// echo "<script> alert('reCAPTHCA verification failed, please try again.');location.href='login.php'; </script>";
|
||||
@ -58,6 +58,7 @@ if ($result->num_rows > 0) {
|
||||
|
||||
// TODO: delete later
|
||||
echo "Verification success.";
|
||||
$_SESSION['username'] = $userName;
|
||||
header("Location: ../shopping/shopping.php");
|
||||
}
|
||||
|
||||
|
||||
@ -4,6 +4,10 @@
|
||||
require_once '../php/connection.php';
|
||||
$conn = connectMysql();
|
||||
session_start();
|
||||
if(!isset($_SESSION['username'])) {
|
||||
header('Location: ../index.html');
|
||||
exit();
|
||||
}
|
||||
?>
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user