mirror of
https://github.com/simon987/Much-Assembly-Required-Frontend.git
synced 2025-04-04 05:52:58 +00:00
27 lines
549 B
PHP
27 lines
549 B
PHP
<?php
|
|
|
|
|
|
include_once "include/UserManager.php";
|
|
include_once "include/MessageCookie.php";
|
|
include_once "include/SessionManager.php";
|
|
|
|
$username = filter_var($_POST['username'], FILTER_SANITIZE_STRING);
|
|
$password = $_POST['password'];
|
|
|
|
|
|
$user = UserManager::auth($username, $password);
|
|
|
|
if ($user != NULL) {
|
|
|
|
SessionManager::generate($user);
|
|
header("Location: index.php"); //todo user page
|
|
|
|
} else {
|
|
|
|
$msg = new MessageCookie("Username or password incorrect", "login");
|
|
$msg->setCookie();
|
|
|
|
header("Location: login.php#login");
|
|
|
|
}
|