Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
if (isset($_POST['submit'])) {
    $validate->email($_POST['email'], 'Email address not valid.');
    $validate->required($_POST['password'], 'Enter your password.');
    if (!$error->has_errors()) {
        $remember = false;
        if (isset($_POST['remember']))
            $remember = true;
        if ($authentication->login($_POST['email'], $_POST['password'], $remember))
            header("Location: index.php");
        else
            $failed = true;
    }
}