Refactor authentication components for modularity

Replaced `LoginForm` with a more extensible `AuthForm` and `AuthScreen`, enabling support for multiple auth strategies (e.g., OAuth) and improved reusability. Updated imports, routes, and configurations accordingly.
This commit is contained in:
dswbx
2025-01-09 10:20:28 +01:00
parent fcab042e88
commit 5c7bfeab8f
11 changed files with 237 additions and 146 deletions

View File

@@ -0,0 +1 @@
export { Auth } from "ui/modules/auth/index";