blocked shopping.php for non-logged in user

This commit is contained in:
CodeServer 2021-07-30 11:44:17 +01:00
parent 8f34787d50
commit e3a9def0db
2 changed files with 6 additions and 1 deletions

View File

@ -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");
}

View File

@ -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 -->