Browse Source

standalone structure applied to forgot password component

pull/22816/head
erdemcaygor 1 year ago
parent
commit
b31187bf63
  1. 2
      npm/ng-packs/packages/account/src/lib/account.module.ts
  2. 2
      npm/ng-packs/packages/account/src/lib/components/forgot-password/forgot-password.component.ts

2
npm/ng-packs/packages/account/src/lib/account.module.ts

@ -11,7 +11,6 @@ import { AccountConfigOptions } from './models/config-options';
import { ACCOUNT_CONFIG_OPTIONS } from './tokens/config-options.token';
import { accountConfigOptionsFactory } from './utils/factory-utils';
import { AuthenticationFlowGuard } from './guards/authentication-flow.guard';
import { ForgotPasswordComponent } from './components/forgot-password/forgot-password.component';
import { ResetPasswordComponent } from './components/reset-password/reset-password.component';
import { RE_LOGIN_CONFIRMATION_TOKEN } from './tokens';
@ -24,7 +23,6 @@ const declarations = [
ChangePasswordComponent,
ManageProfileComponent,
PersonalSettingsComponent,
ForgotPasswordComponent,
ResetPasswordComponent,
PersonalSettingsHalfRowComponent,
];

2
npm/ng-packs/packages/account/src/lib/components/forgot-password/forgot-password.component.ts

@ -4,9 +4,9 @@ import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms
import { finalize } from 'rxjs/operators';
@Component({
standalone: false,
selector: 'abp-forgot-password',
templateUrl: 'forgot-password.component.html',
imports: [CoreModule, ThemeSharedModule, CommonModule, ReactiveFormsModule],
})
export class ForgotPasswordComponent {
form: UntypedFormGroup;

Loading…
Cancel
Save