diff options
Diffstat (limited to 'client/src/app/reset-password')
3 files changed, 7 insertions, 9 deletions
diff --git a/client/src/app/reset-password/reset-password-routing.module.ts b/client/src/app/reset-password/reset-password-routing.module.ts index b41069568..d443b51d6 100644 --- a/client/src/app/reset-password/reset-password-routing.module.ts +++ b/client/src/app/reset-password/reset-password-routing.module.ts | |||
@@ -1,8 +1,6 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { RouterModule, Routes } from '@angular/router' | 2 | import { RouterModule, Routes } from '@angular/router' |
3 | |||
4 | import { MetaGuard } from '@ngx-meta/core' | 3 | import { MetaGuard } from '@ngx-meta/core' |
5 | |||
6 | import { ResetPasswordComponent } from './reset-password.component' | 4 | import { ResetPasswordComponent } from './reset-password.component' |
7 | 5 | ||
8 | const resetPasswordRoutes: Routes = [ | 6 | const resetPasswordRoutes: Routes = [ |
diff --git a/client/src/app/reset-password/reset-password.component.ts b/client/src/app/reset-password/reset-password.component.ts index 07b93ee73..8d50e9839 100644 --- a/client/src/app/reset-password/reset-password.component.ts +++ b/client/src/app/reset-password/reset-password.component.ts | |||
@@ -1,10 +1,8 @@ | |||
1 | import { Component, OnInit } from '@angular/core' | 1 | import { Component, OnInit } from '@angular/core' |
2 | import { ActivatedRoute, Router } from '@angular/router' | 2 | import { ActivatedRoute, Router } from '@angular/router' |
3 | import { UserService, UserValidatorsService, FormReactive } from '@app/shared' | 3 | import { Notifier, UserService } from '@app/core' |
4 | import { Notifier } from '@app/core' | 4 | import { FormReactive, FormValidatorService, ResetPasswordValidatorsService, UserValidatorsService } from '@app/shared/shared-forms' |
5 | import { I18n } from '@ngx-translate/i18n-polyfill' | 5 | import { I18n } from '@ngx-translate/i18n-polyfill' |
6 | import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service' | ||
7 | import { ResetPasswordValidatorsService } from '@app/shared/forms/form-validators/reset-password-validators.service' | ||
8 | 6 | ||
9 | @Component({ | 7 | @Component({ |
10 | selector: 'my-login', | 8 | selector: 'my-login', |
diff --git a/client/src/app/reset-password/reset-password.module.ts b/client/src/app/reset-password/reset-password.module.ts index c2711981a..c77f1c4b0 100644 --- a/client/src/app/reset-password/reset-password.module.ts +++ b/client/src/app/reset-password/reset-password.module.ts | |||
@@ -1,13 +1,15 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | 2 | import { SharedFormModule } from '@app/shared/shared-forms' | |
3 | import { SharedMainModule } from '@app/shared/shared-main' | ||
3 | import { ResetPasswordRoutingModule } from './reset-password-routing.module' | 4 | import { ResetPasswordRoutingModule } from './reset-password-routing.module' |
4 | import { ResetPasswordComponent } from './reset-password.component' | 5 | import { ResetPasswordComponent } from './reset-password.component' |
5 | import { SharedModule } from '../shared' | ||
6 | 6 | ||
7 | @NgModule({ | 7 | @NgModule({ |
8 | imports: [ | 8 | imports: [ |
9 | ResetPasswordRoutingModule, | 9 | ResetPasswordRoutingModule, |
10 | SharedModule | 10 | |
11 | SharedMainModule, | ||
12 | SharedFormModule | ||
11 | ], | 13 | ], |
12 | 14 | ||
13 | declarations: [ | 15 | declarations: [ |