You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
884 B
TypeScript
32 lines
884 B
TypeScript
1 month ago
|
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||
|
import { IonicModule } from '@ionic/angular';
|
||
|
import { RouterModule } from '@angular/router';
|
||
|
|
||
|
import { LoginPage } from './login.page';
|
||
|
import {GoCaptchaModule} from "go-captcha-angular";
|
||
|
import {CaptchaModalComponent} from "../component/captcha-modal/captcha-modal.component";
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
FormsModule,
|
||
|
ReactiveFormsModule,
|
||
|
IonicModule,
|
||
|
RouterModule.forChild([
|
||
|
{
|
||
|
path: '',
|
||
|
component: LoginPage
|
||
|
}
|
||
|
]),
|
||
|
GoCaptchaModule,
|
||
|
],
|
||
|
declarations: [
|
||
|
LoginPage,
|
||
|
CaptchaModalComponent,
|
||
|
],
|
||
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||
|
})
|
||
|
export class LoginPageModule {}
|