coming together
All checks were successful
Build and push / Pulling repo on server (push) Successful in 24s

This commit is contained in:
2023-10-21 21:30:20 +02:00
parent bf101b3b26
commit 927d498d4a
7 changed files with 20 additions and 9 deletions

View File

@ -9,4 +9,13 @@ class Login extends Page {
//return print_r($_REQUEST, true);
}
function validate()
{
$email = $_REQUEST['email'];
$password = $_REQUEST['password'];
$remember = $_REQUEST['remember'];
return print_r(['email'=>$email,'password'=>$password,'remember'=>$remember], true);
}
}