71304: Implement Forgot password components

This commit is contained in:
Yana De Pauw
2020-06-15 11:59:25 +02:00
parent 035a4b6e16
commit 6f9f4ec968
37 changed files with 1087 additions and 443 deletions

View File

@@ -8,7 +8,7 @@ import { AuthMethod } from '../../core/auth/models/auth.method';
import { getAuthenticationMethods, isAuthenticated, isAuthenticationLoading } from '../../core/auth/selectors';
import { CoreState } from '../../core/core.reducers';
import { AuthService } from '../../core/auth/auth.service';
import { getRegisterPath } from '../../app-routing.module';
import { getForgotPasswordPath, getRegisterPath } from '../../app-routing.module';
/**
* /users/sign-in
@@ -86,4 +86,8 @@ export class LogInComponent implements OnInit, OnDestroy {
getRegisterPath() {
return getRegisterPath();
}
getForgotPath() {
return getForgotPasswordPath();
}
}