2021-03-04 08:18:32 +00:00
|
|
|
<?php
|
2021-03-04 12:13:07 +00:00
|
|
|
|
2021-03-08 12:01:01 +00:00
|
|
|
require "../../../bootstrap.php";
|
2021-03-04 12:13:07 +00:00
|
|
|
|
|
|
|
use Backend\Models\Group;
|
|
|
|
use Backend\Models\Password;
|
|
|
|
|
|
|
|
//Start the php session
|
|
|
|
session_start();
|
|
|
|
|
|
|
|
if(isset($_POST['login'])){
|
|
|
|
|
|
|
|
$groupName = $_POST["groupName"];
|
|
|
|
$password = $_POST["password"];
|
|
|
|
|
2021-03-08 12:09:50 +00:00
|
|
|
$group = Group::firstWhere('group_name', $groupName );
|
2021-03-04 12:13:07 +00:00
|
|
|
if($group){
|
2021-03-04 13:12:14 +00:00
|
|
|
$hashedPassword = $group->password->password;
|
2021-03-04 12:13:07 +00:00
|
|
|
if(password_verify($password, $hashedPassword )){
|
|
|
|
$_SESSION['groupName'] = $groupName;
|
2021-03-08 09:05:31 +00:00
|
|
|
$_SESSION['groupId'] = $group->id;
|
2021-03-04 12:13:07 +00:00
|
|
|
$_SESSION['success'] = "You are now logged in";
|
2021-03-08 09:05:31 +00:00
|
|
|
header('location: ../Frontend/index.php?login=success');
|
|
|
|
}else{
|
|
|
|
session_destroy();
|
|
|
|
header('location: ../Frontend/index.php?login=failed?reason=password');
|
2021-03-04 12:13:07 +00:00
|
|
|
}
|
2021-03-08 09:05:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
session_destroy();
|
|
|
|
header('location: ../Frontend/index.php?login=failed?reason=group');
|
2021-03-04 12:13:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|