feat(auth): add recover and reset password functionality

This commit is contained in:
csimonis 2025-05-15 12:31:08 +02:00 committed by Phan Huy Tran
commit 2305e83647
6 changed files with 322 additions and 0 deletions

View file

@ -19,6 +19,20 @@ export const routes: Routes = [
(m) => m.VerifyEmailComponent
),
},
{
path: 'recover-password',
loadComponent: () =>
import('./feature/auth/recover-password/recover-password.component').then(
(m) => m.RecoverPasswordComponent
),
},
{
path: 'reset-password',
loadComponent: () =>
import('./feature/auth/recover-password/recover-password.component').then(
(m) => m.RecoverPasswordComponent
),
},
{
path: 'game/blackjack',
loadComponent: () => import('./feature/game/blackjack/blackjack.component'),