You've already forked openaccounting-web
mirror of
https://github.com/openaccounting/oa-web.git
synced 2025-12-11 22:10:41 +13:00
initial commit
This commit is contained in:
25
src/app/user/user.module.ts
Normal file
25
src/app/user/user.module.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { LoginPage } from './login';
|
||||
import { LogoutPage } from './logout';
|
||||
import { VerifyUserPage } from './verify';
|
||||
import { ResetPasswordPage } from './reset';
|
||||
import { ReactiveFormsModule } from '@angular/forms';
|
||||
import { AppRoutingModule } from '../app-routing.module';
|
||||
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
LoginPage,
|
||||
LogoutPage,
|
||||
VerifyUserPage,
|
||||
ResetPasswordPage
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
ReactiveFormsModule,
|
||||
AppRoutingModule
|
||||
],
|
||||
providers: []
|
||||
})
|
||||
export class UserModule { }
|
||||
Reference in New Issue
Block a user