Files
WebDB/website/public/login.php
2017-01-18 12:35:41 +01:00

44 lines
1.0 KiB
PHP

<!DOCTYPE html>
<html>
<?php
include("../views/login_head.php");
include_once("../queries/connect.php");
include_once("../queries/login.php");
?>
<body>
<?php
session_start();
// Define variables and set to empty values
$uname = $psw ="";
$loginErr ="";
// Trying to login
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// Empty username or password field
if (empty($_POST["uname"]) || empty($_POST["psw"])) {
$loginErr = "Gebruikersnaam of wachtwoord is niet ingevuld";
}
else {
$uname=$_POST["uname"];
$psw=$_POST["psw"];
$hash=hashPassword()["password"];
// If there's an account, go to the profile page
if(password_verify($psw, $hash)) {
header("location: myhyvesbookplus.nl/profile.php");
} else {
$loginErr = "Inloggegevens zijn niet correct";
}
}
}
/* This view adds login view */
include("../views/login-view.php");
?>
</body>
</html>