feat(auth): add recover and reset password functionality
This commit is contained in:
parent
c8f2d16f07
commit
2305e83647
6 changed files with 322 additions and 0 deletions
|
@ -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'),
|
||||
|
|
Reference in a new issue