Script.php: Moved lecturer and TA append password variable to get credential file.

Bug510-Abdulai
YAKUBU ABDULAI 2022-12-05 15:45:57 +08:00
parent b1ea7bf9e8
commit 4ac03f766c
2 changed files with 4 additions and 2 deletions

View File

@ -279,12 +279,12 @@ if (!empty($_POST["frm_createlecturrer"])) {
$_SESSION["info_Admin_Users"]="Email address : ".$email." is already in use.";
header("Location: Admin.php");
}
$password_hash = password_hash("$password-Lrr@2022", PASSWORD_DEFAULT);
$password_hash = password_hash("$password-$append_password", PASSWORD_DEFAULT);
$sql= "INSERT INTO `users_table`(`Email`, `Password`, `Full_Name`, `UserType`) VALUES "
. "('$email','$password_hash','$fullname','$type')";
if ($con->query($sql) === TRUE) {
$_SESSION["info_Admin_Users"] = $type . " user created successfully. Use email " . $email . " as account name and $password-Lrr@2022 as password.";
$_SESSION["info_Admin_Users"] = $type . " user created successfully. Use email " . $email . " as account name and $password-$append_password as password.";
header("Location: Admin.php");
} else {
echo "Error: " . $sql . "<br>" . $con->error;

View File

@ -2,4 +2,6 @@
$csv = array_map('str_getcsv', file('./../../lrr_submission/KeepItSafe.txt'));
$mysql_username = $csv[0][0];
$mysql_password = $csv[0][1];
//append password for Lecturer and TA
$append_password = "Lrr@2022" ;
?>