login in code example
Example 1: login
if(isset($_POST['submit'])){
if(password_verify($_POST['password'], "hash")){
$_SESSION['login'] = true;
header("Location: ...");
exit;
}
}
Example 2: login
<h1 class="animate__animated animate__bounce">An animated element</h1>