Initial commit

This commit is contained in:
2024-06-01 22:48:57 +02:00
commit ff60e91c55
11 changed files with 1198 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\auth;
class Authenticator
{
public function isLoggedIn() :bool
{
return isset($_SESSION['logged_in']);
}
}