register works, login almoast, token system in build

This commit is contained in:
GitProtogen
2026-03-05 13:23:37 +01:00
parent e56169b299
commit 41b846f229
5 changed files with 70 additions and 11 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace ComCen\Security;
class TokenHandler
{
private static ?self $instance = null;
private static $tokens = [];
public static function getNewTokenForUser(string $username)
{
}
}