2025-11-11 10:52:30 +07:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { LoginContentComponent } from '../../content/login-content/login-content.component';
|
|
|
|
|
import { LoginControlRoutingModule } from './login-control-routing.module';
|
|
|
|
|
import { LoginPageComponent } from '../../component/login-page/login-page.component';
|
|
|
|
|
import { ReactiveFormsModule } from '@angular/forms';
|
|
|
|
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
|
|
|
|
import { LoginForgotComponent } from '../../component/login-forgot/login-forgot.component';
|
2025-11-21 15:01:21 +07:00
|
|
|
import { LoginRegisterComponent } from '../../component/login-register/login-register.component';
|
2025-11-11 10:52:30 +07:00
|
|
|
// import { AppModule } from '../../app.module';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
declarations: [
|
|
|
|
|
LoginContentComponent,
|
|
|
|
|
LoginPageComponent,
|
2025-11-21 15:01:21 +07:00
|
|
|
LoginForgotComponent,
|
|
|
|
|
LoginRegisterComponent
|
2025-11-11 10:52:30 +07:00
|
|
|
],
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
ReactiveFormsModule,
|
|
|
|
|
FontAwesomeModule,
|
|
|
|
|
// AppModule,
|
|
|
|
|
LoginControlRoutingModule
|
|
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
export class LoginControlModule { }
|