add email verification after account registration

This commit is contained in:
Krrish Ghimire
2026-07-08 22:55:22 +05:45
parent 212785725f
commit 77c4cfc777
26 changed files with 1386 additions and 53 deletions

View File

@@ -9,6 +9,10 @@ export const routes: Routes = [
loadComponent: () => import('./auth/login/login.component').then(m => m.LoginComponent),
canActivate: [LoginGuard],
},
{
path: 'verify-email',
loadComponent: () => import('./auth/verify-email/verify-email.component').then(m => m.VerifyEmailComponent),
},
{
path: 'register',
loadComponent: () => import('./auth/register/register.component').then(m => m.RegisterComponent),