Work on login

This commit is contained in:
2026-09-11 22:23:00 +02:00
parent abf00ac401
commit fb09048e45
14 changed files with 168 additions and 26 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
if (!isset($_SESSION['id'])) {
http_response_code(401);
exit;
}
http_response_code(200);
echo 'ok';