Add auth server, login page, users table, create user script, etc

This commit is contained in:
2025-01-14 13:35:13 -05:00
parent fcfe4346f7
commit 2d849e34d1
15 changed files with 2487 additions and 184 deletions

View File

@@ -0,0 +1,6 @@
CREATE TABLE `users` (
`id` INT AUTO_INCREMENT PRIMARY KEY,
`username` VARCHAR(255) NOT NULL UNIQUE,
`password` VARCHAR(255) NOT NULL,
`created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);