Fixed key word error

This commit is contained in:
neerholt
2021-03-05 10:52:42 +01:00
parent dd66573508
commit e1e879e94b
5 changed files with 44 additions and 12 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ if(isset($_POST['login'])){
if(password_verify($password, $hashedPassword )){
$_SESSION['groupName'] = $groupName;
$_SESSION['success'] = "You are now logged in";
header('location: Main.php?login=success');
header('location: ../Frontend/group.php?login=success');
}
}