|
@@ -0,0 +1,38 @@
|
|
|
+import { NgModule } from '@angular/core';
|
|
|
+import { RouterModule, Routes } from '@angular/router';
|
|
|
+import { SignInComponent } from './sign-in/sign-in.component';
|
|
|
+import { AuthSignInComponent } from './auth-sign-in.component';
|
|
|
+import { ForgetPasswordComponent } from './forget-password/forget-password.component';
|
|
|
+import { VerifyOtpComponent } from './verify-otp/verify-otp.component';
|
|
|
+import { ChangePasswordComponent } from './change-password/change-password.component';
|
|
|
+
|
|
|
+const routes: Routes = [
|
|
|
+ {
|
|
|
+ path: '',
|
|
|
+ component: AuthSignInComponent,
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '',
|
|
|
+ component: SignInComponent,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'forget-password',
|
|
|
+ component: ForgetPasswordComponent,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'verify',
|
|
|
+ component: VerifyOtpComponent,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'change-password',
|
|
|
+ component: ChangePasswordComponent,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+];
|
|
|
+
|
|
|
+@NgModule({
|
|
|
+ imports: [RouterModule.forChild(routes)],
|
|
|
+ exports: [RouterModule],
|
|
|
+})
|
|
|
+export class AuthSignInRoutingModule {}
|