Add authentication, roles, dashboard and access control

This commit is contained in:
SatryaIrvannurYudha
2026-06-06 22:02:14 +07:00
parent 02ec3dab8a
commit 15c5ae63d7
17 changed files with 612 additions and 17 deletions
+4
View File
@@ -0,0 +1,4 @@
<?php
echo "admin: " . password_hash("admin", PASSWORD_DEFAULT) . "\n";
echo "operator: " . password_hash("operator", PASSWORD_DEFAULT) . "\n";
?>