I did some homework

This commit is contained in:
Digi
2024-09-18 20:24:12 +02:00
parent dc5ff7ddad
commit 6ebd347e44
9 changed files with 111 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
<?php
$isloggedin = false;
if (isset($_POST['username']) && isset($_POST['password'])){
$isloggedin = true;
}
?>