You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
619 B

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { LoginComponent } from './login/login.component';
const routes: Routes = [
{
path: '',
component: LoginComponent,
pathMatch: 'prefix',
data: {
dwRouteData: {
programId: 'dw-login'
}
}
},
// {
// path: 'register',
// component: RegisterComponent
// },
// {
// path: 'forgot',
// component: ForgotComponent
// }
];
@NgModule({
imports: [
RouterModule.forChild(routes)
],
exports: [RouterModule]
})
export class LoginRoutingModule {
}