Create new auth module for login and register components
This commit is contained in:
parent
398cfc764a
commit
20330bc220
7 changed files with 414 additions and 1 deletions
|
@ -21,6 +21,9 @@ import { AuthGuard } from './_guards/auth.guard';
|
|||
import { FullLayoutComponent } from './layouts/full-layout.component';
|
||||
import { SimpleLayoutComponent } from './layouts/simple-layout.component';
|
||||
|
||||
// Submodules
|
||||
import { AuthModule } from './auth/auth.module';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
BrowserModule,
|
||||
|
@ -28,7 +31,8 @@ import { SimpleLayoutComponent } from './layouts/simple-layout.component';
|
|||
HttpModule,
|
||||
BsDropdownModule.forRoot(),
|
||||
TabsModule.forRoot(),
|
||||
ChartsModule
|
||||
ChartsModule,
|
||||
AuthModule,
|
||||
],
|
||||
declarations: [
|
||||
AppComponent,
|
||||
|
|
Reference in a new issue