auth
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-12-10 19:34:30 +00:00
parent 6e24eaf334
commit ad2b3afa3c
8 changed files with 112 additions and 4 deletions

8
check_session.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
session_start();
if (isset($_SESSION["username"])) echo $_SESSION["username"];
else echo "";
?>