@annalib/anna-cognito-lib 3.0.13 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/anna-login/anna-login.component.mjs +3 -3
- package/esm2022/lib/components/forgot-password/forgot-password.component.mjs +12 -44
- package/esm2022/lib/components/password-matching/password-matching.component.mjs +3 -3
- package/esm2022/lib/components/verify-and-set-new-password/verify-and-set-new-password.component.mjs +3 -5
- package/esm2022/lib/config/acl-service.token.mjs +1 -1
- package/esm2022/lib/config/auth-service.token.mjs +1 -1
- package/esm2022/lib/config/config-service.token.mjs +1 -1
- package/esm2022/lib/constants/loginConstant.mjs +2 -4
- package/esm2022/lib/services/acl.service.mjs +3 -5
- package/esm2022/lib/services/auth.service.mjs +7 -14
- package/esm2022/public-api.mjs +1 -2
- package/fesm2022/annalib-anna-cognito-lib.mjs +26 -119
- package/fesm2022/annalib-anna-cognito-lib.mjs.map +1 -1
- package/lib/components/forgot-password/forgot-password.component.d.ts +1 -3
- package/lib/config/acl-service.token.d.ts +5 -0
- package/lib/config/auth-service.token.d.ts +2 -1
- package/lib/config/config-service.token.d.ts +0 -1
- package/lib/constants/loginConstant.d.ts +1 -3
- package/lib/services/acl.service.d.ts +1 -1
- package/lib/services/auth.service.d.ts +1 -1
- package/package.json +1 -2
- package/public-api.d.ts +0 -1
- package/esm2022/lib/components/catc-login/catc-login.component.mjs +0 -62
- package/lib/components/catc-login/catc-login.component.d.ts +0 -20
|
@@ -28,7 +28,6 @@ export declare class ForgotPasswordComponent implements OnInit {
|
|
|
28
28
|
confirmPassword: PasswordType;
|
|
29
29
|
infoMessageToRedirectLogin: string;
|
|
30
30
|
isLoading: boolean;
|
|
31
|
-
emailPattern: RegExp;
|
|
32
31
|
constructor(authService: AnnaLibAuthService, fb: FormBuilder, toastr: ToastrService, router: Router, consumingProjectConfigService: IConfigService, consumingProjectAuthService: IAuthService, consumingProjectSSOLoginService: ISSOLoginService);
|
|
33
32
|
ngOnInit(): void;
|
|
34
33
|
onIntialiseForm(): void;
|
|
@@ -36,9 +35,8 @@ export declare class ForgotPasswordComponent implements OnInit {
|
|
|
36
35
|
isFormValid(): boolean;
|
|
37
36
|
onLoginOrGetOtpButtonClick(): void;
|
|
38
37
|
onVerifyRegisteredEmail(): void;
|
|
39
|
-
onVerifyingRegisteredEmailForCatc(): void;
|
|
40
38
|
onGettingUserStatus(isUsernameAvailable: boolean, isUserWithTempPassword: boolean, username: string): void;
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent,
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
|
|
42
40
|
static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "anna-cognito-lib-forgot-password", never, {}, {}, never, never, true, never>;
|
|
43
41
|
}
|
|
44
42
|
export {};
|
|
@@ -30,9 +30,14 @@ export interface IAclService {
|
|
|
30
30
|
AUDIENCE_ESTIMATES_CONFIG_WRITE: string;
|
|
31
31
|
RATE_CONFIG_WRITE: string;
|
|
32
32
|
RATE_CONFIG_READ: string;
|
|
33
|
+
HOLIDAY_LIST_READ: string;
|
|
34
|
+
HOLIDAY_LIST_WRITE: string;
|
|
33
35
|
WRITE_ENABLED_ORDERS_READ: string;
|
|
34
36
|
WRITE_ENABLED_ORDERS_WRITE: string;
|
|
35
37
|
SECTION_RATE_CARD_READ: string;
|
|
36
38
|
SECTION_RATE_CARD_WRITE: string;
|
|
37
39
|
AUDIENCE_ESTIMATES_READ: string;
|
|
40
|
+
UPLOAD_CSR_READ: string;
|
|
41
|
+
UPLOAD_CSR_WRITE: string;
|
|
42
|
+
PROGRAM_SCHEDULE_READ: string;
|
|
38
43
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { InjectionToken } from "@angular/core";
|
|
2
|
+
import { AuthTokens } from "aws-amplify/auth";
|
|
2
3
|
import { Observable } from "rxjs";
|
|
3
4
|
/** Token to inject the auth service */
|
|
4
5
|
export declare const AUTH_SERVICE_TOKEN: InjectionToken<IAuthService>;
|
|
@@ -9,7 +10,7 @@ export interface IAuthService {
|
|
|
9
10
|
IdToken: any;
|
|
10
11
|
defaultLoginPageUrl: "co-pilot-login" | "login";
|
|
11
12
|
onSuccessfulAuthenticatingUser(loggedInViaSso: boolean): void;
|
|
12
|
-
getAllCognitoTokenAndGroups(tokens:
|
|
13
|
+
getAllCognitoTokenAndGroups(tokens: AuthTokens): void;
|
|
13
14
|
isUsernameAvailable(username: string): Observable<any>;
|
|
14
15
|
isEmailAvailable(emailId: string, ogId: number): Observable<any>;
|
|
15
16
|
getUserState(username: string): Observable<any>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export declare class LoginConstant {
|
|
2
|
-
static readonly
|
|
2
|
+
static readonly enterEmail = "Enter your username";
|
|
3
3
|
static readonly enterUserCode = "Enter your usercode";
|
|
4
|
-
static readonly enterEmail = "Enter your email";
|
|
5
4
|
static readonly password = "Password";
|
|
6
5
|
static readonly confirmPassword = "Confirm Password";
|
|
7
6
|
static readonly login = "Login";
|
|
@@ -37,7 +36,6 @@ export declare class LoginConstant {
|
|
|
37
36
|
static readonly forgotPasswordHeading = "Forgot your password?";
|
|
38
37
|
static readonly PleaseEnterYourUsernameMessage = "Please enter your username.";
|
|
39
38
|
static readonly PleaseEnterYourUsercodeMessage = "Please enter your usercode.";
|
|
40
|
-
static readonly PleaseEnterYourEmailMessage = "Please enter your email address below.";
|
|
41
39
|
static readonly forgotPasswordButton: string;
|
|
42
40
|
static readonly apiFailErrorMessage = "Unable to connect to server right now. Please try after some time.";
|
|
43
41
|
static readonly setNewPasswordUrl = "/set-new-password";
|
|
@@ -6,6 +6,6 @@ export declare class AnnaLibAclService {
|
|
|
6
6
|
userGroupsInCognitoJWT: string[];
|
|
7
7
|
isUserAuthorisedToAccessPage(url: string): boolean;
|
|
8
8
|
isUserAuthorisedToAccessElement(privilege: string): boolean;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaLibAclService,
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaLibAclService, never>;
|
|
10
10
|
static ɵprov: i0.ɵɵInjectableDeclaration<AnnaLibAclService>;
|
|
11
11
|
}
|
|
@@ -41,6 +41,6 @@ export declare class AnnaLibAuthService {
|
|
|
41
41
|
expiryAllExistingCurrentSession(username: string, newPassword: string): void;
|
|
42
42
|
onLoginInCogntioToGetAccessToken(username: string, password: string): Promise<void>;
|
|
43
43
|
onCallGlobalSignout(): Promise<void>;
|
|
44
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaLibAuthService,
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaLibAuthService, never>;
|
|
45
45
|
static ɵprov: i0.ɵɵInjectableDeclaration<AnnaLibAuthService>;
|
|
46
46
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@annalib/anna-cognito-lib",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^16.2.12",
|
|
6
6
|
"@angular/core": "^16.2.12",
|
|
7
|
-
"@mdi/font": "^5.9.55",
|
|
8
7
|
"@ng-bootstrap/ng-bootstrap": "^15.1.2",
|
|
9
8
|
"@types/node": "^12.11.1",
|
|
10
9
|
"aws-amplify": "^6.0.4",
|
package/public-api.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export * from "./lib/components/anna-login/anna-login.component";
|
|
2
|
-
export * from "./lib/components/catc-login/catc-login.component";
|
|
3
2
|
export * from "./lib/components/cognito-and-sso-login-container/cognito-and-sso-login-container.component";
|
|
4
3
|
export * from "./lib/components/forgot-password/forgot-password.component";
|
|
5
4
|
export * from "./lib/components/password-matching/password-matching.component";
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import { CommonModule, NgClass, NgIf, NgOptimizedImage } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, Inject } from '@angular/core';
|
|
3
|
-
import { FormBuilder, FormsModule, ReactiveFormsModule, Validators } from '@angular/forms';
|
|
4
|
-
import { RouterLink } from '@angular/router';
|
|
5
|
-
import { CONFIG_SERVICE_TOKEN } from '../../config/config-service.token';
|
|
6
|
-
import { LoginConstant } from '../../constants/loginConstant';
|
|
7
|
-
import { SpinnerButtonDirective } from '../../directives/spinner-button';
|
|
8
|
-
import { AnnaLibAuthService } from '../../services/auth.service';
|
|
9
|
-
import { PoweredByLogoTemplateComponent } from '../powered-by-logo-template/powered-by-logo-template.component';
|
|
10
|
-
import { SurewavesYearLogoComponent } from '../surewaves-year-logo/surewaves-year-logo.component';
|
|
11
|
-
import { VersionAndTermPolicyComponent } from '../version-and-term-policy/version-and-term-policy.component';
|
|
12
|
-
import * as i0 from "@angular/core";
|
|
13
|
-
import * as i1 from "../../services/auth.service";
|
|
14
|
-
import * as i2 from "@angular/forms";
|
|
15
|
-
import * as i3 from "@angular/common";
|
|
16
|
-
export class CatcLoginComponent {
|
|
17
|
-
constructor(authService, fb, consumingProjectConfigService) {
|
|
18
|
-
this.authService = authService;
|
|
19
|
-
this.fb = fb;
|
|
20
|
-
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
21
|
-
this.emailPattern = /\S+@\S+\.\S+/;
|
|
22
|
-
}
|
|
23
|
-
ngOnInit() {
|
|
24
|
-
this.authService.consumingProjectAuthService.isLoggingIn = false;
|
|
25
|
-
this.constants = LoginConstant;
|
|
26
|
-
this.onIntialiseForm();
|
|
27
|
-
}
|
|
28
|
-
onIntialiseForm() {
|
|
29
|
-
this.loginForm = this.fb.group({
|
|
30
|
-
email: [null, [Validators.required, Validators.pattern(this.emailPattern)]],
|
|
31
|
-
password: [null],
|
|
32
|
-
});
|
|
33
|
-
}
|
|
34
|
-
OnLogin() {
|
|
35
|
-
this.authService.consumingProjectAuthService.isLoggingIn = true;
|
|
36
|
-
const username = this.loginForm.controls.email.value;
|
|
37
|
-
const password = this.loginForm.controls.password.value;
|
|
38
|
-
this.authService.handleSignIn({ username, password });
|
|
39
|
-
}
|
|
40
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CatcLoginComponent, deps: [{ token: i1.AnnaLibAuthService }, { token: i2.FormBuilder }, { token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
41
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CatcLoginComponent, isStandalone: true, selector: "anna-cognito-catc-login", ngImport: i0, template: "<div class=\"main\">\r\n <!-- Load login page when all constant variable are intiated otherwise it will show a glitch. that's why ngIf check of constants.forgotPassword -->\r\n <section >\r\n <header>\r\n <img\r\n [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n width=\"145\"\r\n height=\"45.03\"\r\n alt=\"catc Logo\"\r\n priority\r\n />\r\n </header>\r\n <article>\r\n <form\r\n [formGroup]=\"loginForm\"\r\n (ngSubmit)=\"OnLogin()\"\r\n >\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"authService.loginErrorMessage\"\r\n >\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.loginErrorMessage }}</p>\r\n </div>\r\n\r\n <input\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"email\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\"\r\n [placeholder]=\"constants.enterEmail\"\r\n autocomplete=\"email\"\r\n autofocus\r\n />\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"2\"\r\n formControlName=\"password\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\"\r\n [placeholder]=\"constants.password\"\r\n autocomplete=\"current-password\"\r\n autofocus\r\n />\r\n\r\n <a\r\n tabindex=\"4\"\r\n [routerLink]=\"constants.forgortPasswordPageUrl\"\r\n >{{ constants.forgotPassword }}</a\r\n >\r\n <button\r\n tabindex=\"3\"\r\n class=\"login-btn\"\r\n annaCognitoSpinnerBtn\r\n [spinnerButtonLoading]=\"authService.consumingProjectAuthService.isLoggingIn\"\r\n [spinnerButtonText]=\"constants.login\"\r\n ></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template> </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", styles: ["@keyframes show{0%{opacity:0}50%{opacity:.5}to{opacity:1}}html{overflow-y:scroll}.main{background-color:#fff;background-size:cover;font-family:Roboto;height:calc(100vh - 50px)}section{top:45%;left:50%;position:absolute;transform:translate(-50%,-50%);width:20.875rem;animation:show .5s 1;-moz-animation:show .5s 1}.container{width:100%;height:100%;overflow:auto}header{height:auto;width:100%;text-align:center}article{margin-top:.9375rem;margin-bottom:.9375rem;border:1px solid #979797;background-color:#f4f4f4;padding:2rem 1.375rem;border-radius:.375rem;box-shadow:0 .125rem .4375rem #0000001a}article .sub-title{color:#6e6e6e;font-family:Roboto;font-size:1.25rem;font-weight:700;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}article #heading{color:#212121;text-align:center;margin-bottom:1.5rem;font-family:Roboto;font-size:1.125rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}p{text-align:center;margin-bottom:1rem}#alert-div{padding:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin:0;color:#4a4a4a;font-family:Roboto;font-size:.75rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}#info-div{padding:6px 0;margin-bottom:.75rem;border-radius:.25rem;border:1px solid #268bff;background:#e3f0ff}#info-div .mdi-info{color:#268bff;font-size:1rem;margin-left:6px}#info-div p{margin:-1.5625rem 0 0 1.8rem;padding:.3125rem 0;color:#4a4a4a;font-family:Roboto;font-size:.75rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}footer{align-items:baseline;color:#6e6e6e;opacity:.9;display:flex;font-family:Ubuntu;font-size:1.25rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;justify-content:center}footer span{font-size:1.5625rem;margin-left:.25rem}input[type=password],input[type=text],input[type=number]{width:100%;height:30px;padding:.75rem 1rem;border:1px solid #979797;margin-bottom:.625rem;border-radius:.375rem}.login-btn{width:100%;height:2.5rem;border:0;color:#fff;background-color:#268bff;border-radius:.375rem;font-size:1rem}.login-btn:hover{background-color:#4099ff;cursor:pointer}.login-btn:disabled{background-color:#ccc;color:#fff;cursor:not-allowed}.input-invalid{border:1px solid #fe3824!important}input[type=password].ng-dirty.ng-invalid,input[type=text].ng-dirty.ng-invalid{border:1px solid #fe3824}input[type=submit]:focus,input[type=password]:focus,input[type=text]:focus,input[type=checkbox]:focus,button:focus{outline:none}input::placeholder{color:#a4a4a4}:host ::ng-deep .verison-and-policy{color:#8bac2a}a{float:right;color:#9b1cd5;font-family:Roboto;font-size:.875rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;text-decoration:underline;margin-bottom:.9375rem}a:hover{cursor:pointer}input[type=password],input[type=text],input[type=number]{width:88%;height:4px;font-family:Roboto;font-size:14px;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.login-btn{background-color:#9b1cd5!important}header{margin-bottom:25px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgOptimizedImage, selector: "img[ngSrc]", inputs: ["ngSrc", "ngSrcset", "sizes", "width", "height", "loading", "priority", "loaderParams", "disableOptimizedSrcset", "fill", "src", "srcset"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: SpinnerButtonDirective, selector: "[annaCognitoSpinnerBtn]", inputs: ["spinnerButtonLoading", "spinnerButtonText"] }, { kind: "component", type: PoweredByLogoTemplateComponent, selector: "anna-cognito-lib-powered-by-logo-template" }, { kind: "component", type: SurewavesYearLogoComponent, selector: "anna-cognito-lib-surewaves-year-logo" }, { kind: "component", type: VersionAndTermPolicyComponent, selector: "anna-cognito-lib-version-and-term-policy" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
42
|
-
}
|
|
43
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CatcLoginComponent, decorators: [{
|
|
44
|
-
type: Component,
|
|
45
|
-
args: [{ selector: "anna-cognito-catc-login", standalone: true, imports: [
|
|
46
|
-
CommonModule,
|
|
47
|
-
NgIf,
|
|
48
|
-
NgOptimizedImage,
|
|
49
|
-
FormsModule,
|
|
50
|
-
ReactiveFormsModule,
|
|
51
|
-
NgClass,
|
|
52
|
-
RouterLink,
|
|
53
|
-
SpinnerButtonDirective,
|
|
54
|
-
PoweredByLogoTemplateComponent,
|
|
55
|
-
SurewavesYearLogoComponent,
|
|
56
|
-
VersionAndTermPolicyComponent,
|
|
57
|
-
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"main\">\r\n <!-- Load login page when all constant variable are intiated otherwise it will show a glitch. that's why ngIf check of constants.forgotPassword -->\r\n <section >\r\n <header>\r\n <img\r\n [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n width=\"145\"\r\n height=\"45.03\"\r\n alt=\"catc Logo\"\r\n priority\r\n />\r\n </header>\r\n <article>\r\n <form\r\n [formGroup]=\"loginForm\"\r\n (ngSubmit)=\"OnLogin()\"\r\n >\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"authService.loginErrorMessage\"\r\n >\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.loginErrorMessage }}</p>\r\n </div>\r\n\r\n <input\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"email\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\"\r\n [placeholder]=\"constants.enterEmail\"\r\n autocomplete=\"email\"\r\n autofocus\r\n />\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"2\"\r\n formControlName=\"password\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\"\r\n [placeholder]=\"constants.password\"\r\n autocomplete=\"current-password\"\r\n autofocus\r\n />\r\n\r\n <a\r\n tabindex=\"4\"\r\n [routerLink]=\"constants.forgortPasswordPageUrl\"\r\n >{{ constants.forgotPassword }}</a\r\n >\r\n <button\r\n tabindex=\"3\"\r\n class=\"login-btn\"\r\n annaCognitoSpinnerBtn\r\n [spinnerButtonLoading]=\"authService.consumingProjectAuthService.isLoggingIn\"\r\n [spinnerButtonText]=\"constants.login\"\r\n ></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template> </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", styles: ["@keyframes show{0%{opacity:0}50%{opacity:.5}to{opacity:1}}html{overflow-y:scroll}.main{background-color:#fff;background-size:cover;font-family:Roboto;height:calc(100vh - 50px)}section{top:45%;left:50%;position:absolute;transform:translate(-50%,-50%);width:20.875rem;animation:show .5s 1;-moz-animation:show .5s 1}.container{width:100%;height:100%;overflow:auto}header{height:auto;width:100%;text-align:center}article{margin-top:.9375rem;margin-bottom:.9375rem;border:1px solid #979797;background-color:#f4f4f4;padding:2rem 1.375rem;border-radius:.375rem;box-shadow:0 .125rem .4375rem #0000001a}article .sub-title{color:#6e6e6e;font-family:Roboto;font-size:1.25rem;font-weight:700;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}article #heading{color:#212121;text-align:center;margin-bottom:1.5rem;font-family:Roboto;font-size:1.125rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}p{text-align:center;margin-bottom:1rem}#alert-div{padding:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin:0;color:#4a4a4a;font-family:Roboto;font-size:.75rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}#info-div{padding:6px 0;margin-bottom:.75rem;border-radius:.25rem;border:1px solid #268bff;background:#e3f0ff}#info-div .mdi-info{color:#268bff;font-size:1rem;margin-left:6px}#info-div p{margin:-1.5625rem 0 0 1.8rem;padding:.3125rem 0;color:#4a4a4a;font-family:Roboto;font-size:.75rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}footer{align-items:baseline;color:#6e6e6e;opacity:.9;display:flex;font-family:Ubuntu;font-size:1.25rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;justify-content:center}footer span{font-size:1.5625rem;margin-left:.25rem}input[type=password],input[type=text],input[type=number]{width:100%;height:30px;padding:.75rem 1rem;border:1px solid #979797;margin-bottom:.625rem;border-radius:.375rem}.login-btn{width:100%;height:2.5rem;border:0;color:#fff;background-color:#268bff;border-radius:.375rem;font-size:1rem}.login-btn:hover{background-color:#4099ff;cursor:pointer}.login-btn:disabled{background-color:#ccc;color:#fff;cursor:not-allowed}.input-invalid{border:1px solid #fe3824!important}input[type=password].ng-dirty.ng-invalid,input[type=text].ng-dirty.ng-invalid{border:1px solid #fe3824}input[type=submit]:focus,input[type=password]:focus,input[type=text]:focus,input[type=checkbox]:focus,button:focus{outline:none}input::placeholder{color:#a4a4a4}:host ::ng-deep .verison-and-policy{color:#8bac2a}a{float:right;color:#9b1cd5;font-family:Roboto;font-size:.875rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;text-decoration:underline;margin-bottom:.9375rem}a:hover{cursor:pointer}input[type=password],input[type=text],input[type=number]{width:88%;height:4px;font-family:Roboto;font-size:14px;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.login-btn{background-color:#9b1cd5!important}header{margin-bottom:25px}\n"] }]
|
|
58
|
-
}], ctorParameters: function () { return [{ type: i1.AnnaLibAuthService }, { type: i2.FormBuilder }, { type: undefined, decorators: [{
|
|
59
|
-
type: Inject,
|
|
60
|
-
args: [CONFIG_SERVICE_TOKEN]
|
|
61
|
-
}] }]; } });
|
|
62
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2F0Yy1sb2dpbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbm5hLWNvZ25pdG8tbGliL3NyYy9saWIvY29tcG9uZW50cy9jYXRjLWxvZ2luL2NhdGMtbG9naW4uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5uYS1jb2duaXRvLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvY2F0Yy1sb2dpbi9jYXRjLWxvZ2luLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsT0FBTyxFQUFFLElBQUksRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQ2hGLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQ25GLE9BQU8sRUFBRSxXQUFXLEVBQWEsV0FBVyxFQUFFLG1CQUFtQixFQUFFLFVBQVUsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3RHLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUU3QyxPQUFPLEVBQUUsb0JBQW9CLEVBQWtCLE1BQU0sbUNBQW1DLENBQUM7QUFDekYsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQzlELE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3pFLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ2pFLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLGdFQUFnRSxDQUFDO0FBQ2hILE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLHNEQUFzRCxDQUFDO0FBQ2xHLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLDhEQUE4RCxDQUFDOzs7OztBQXVCN0csTUFBTSxPQUFPLGtCQUFrQjtJQUszQixZQUNXLFdBQStCLEVBQzlCLEVBQWUsRUFDYyw2QkFBNkM7UUFGM0UsZ0JBQVcsR0FBWCxXQUFXLENBQW9CO1FBQzlCLE9BQUUsR0FBRixFQUFFLENBQWE7UUFDYyxrQ0FBNkIsR0FBN0IsNkJBQTZCLENBQWdCO1FBTHRGLGlCQUFZLEdBQUcsY0FBYyxDQUFDO0lBTTNCLENBQUM7SUFFSixRQUFRO1FBQ0osSUFBSSxDQUFDLFdBQVcsQ0FBQywyQkFBMkIsQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO1FBQ2pFLElBQUksQ0FBQyxTQUFTLEdBQUcsYUFBYSxDQUFDO1FBQy9CLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztJQUMzQixDQUFDO0lBRUQsZUFBZTtRQUNYLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUM7WUFDM0IsS0FBSyxFQUFFLENBQUMsSUFBSSxFQUFFLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRSxVQUFVLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDO1lBQzNFLFFBQVEsRUFBRSxDQUFDLElBQUksQ0FBQztTQUNuQixDQUFDLENBQUM7SUFDUCxDQUFDO0lBRUQsT0FBTztRQUNILElBQUksQ0FBQyxXQUFXLENBQUMsMkJBQTJCLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQztRQUNoRSxNQUFNLFFBQVEsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDO1FBQ3JELE1BQU0sUUFBUSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUM7UUFDeEQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxZQUFZLENBQUMsRUFBRSxRQUFRLEVBQUUsUUFBUSxFQUFFLENBQUMsQ0FBQztJQUMxRCxDQUFDOytHQTdCUSxrQkFBa0IsK0VBUWYsb0JBQW9CO21HQVJ2QixrQkFBa0IsbUZDbEMvQiw2dUZBcUVBLHEzR0RuRFEsWUFBWSxpT0FFWixnQkFBZ0IsMk1BQ2hCLFdBQVcsMnBCQUNYLG1CQUFtQixnVkFFbkIsVUFBVSw0TkFDVixzQkFBc0IsMkhBQ3RCLDhCQUE4QixzRkFDOUIsMEJBQTBCLGlGQUMxQiw2QkFBNkI7OzRGQU14QixrQkFBa0I7a0JBcEI5QixTQUFTOytCQUNJLHlCQUF5QixjQUN2QixJQUFJLFdBQ1A7d0JBQ0wsWUFBWTt3QkFDWixJQUFJO3dCQUNKLGdCQUFnQjt3QkFDaEIsV0FBVzt3QkFDWCxtQkFBbUI7d0JBQ25CLE9BQU87d0JBQ1AsVUFBVTt3QkFDVixzQkFBc0I7d0JBQ3RCLDhCQUE4Qjt3QkFDOUIsMEJBQTBCO3dCQUMxQiw2QkFBNkI7cUJBQ2hDLG1CQUdnQix1QkFBdUIsQ0FBQyxNQUFNOzswQkFVMUMsTUFBTTsyQkFBQyxvQkFBb0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUsIE5nQ2xhc3MsIE5nSWYsIE5nT3B0aW1pemVkSW1hZ2UgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbmplY3QsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3JtQnVpbGRlciwgRm9ybUdyb3VwLCBGb3Jtc01vZHVsZSwgUmVhY3RpdmVGb3Jtc01vZHVsZSwgVmFsaWRhdG9ycyB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgUm91dGVyTGluayB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcblxyXG5pbXBvcnQgeyBDT05GSUdfU0VSVklDRV9UT0tFTiwgSUNvbmZpZ1NlcnZpY2UgfSBmcm9tICcuLi8uLi9jb25maWcvY29uZmlnLXNlcnZpY2UudG9rZW4nO1xyXG5pbXBvcnQgeyBMb2dpbkNvbnN0YW50IH0gZnJvbSAnLi4vLi4vY29uc3RhbnRzL2xvZ2luQ29uc3RhbnQnO1xyXG5pbXBvcnQgeyBTcGlubmVyQnV0dG9uRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vZGlyZWN0aXZlcy9zcGlubmVyLWJ1dHRvbic7XHJcbmltcG9ydCB7IEFubmFMaWJBdXRoU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZSc7XHJcbmltcG9ydCB7IFBvd2VyZWRCeUxvZ29UZW1wbGF0ZUNvbXBvbmVudCB9IGZyb20gJy4uL3Bvd2VyZWQtYnktbG9nby10ZW1wbGF0ZS9wb3dlcmVkLWJ5LWxvZ28tdGVtcGxhdGUuY29tcG9uZW50JztcclxuaW1wb3J0IHsgU3VyZXdhdmVzWWVhckxvZ29Db21wb25lbnQgfSBmcm9tICcuLi9zdXJld2F2ZXMteWVhci1sb2dvL3N1cmV3YXZlcy15ZWFyLWxvZ28uY29tcG9uZW50JztcclxuaW1wb3J0IHsgVmVyc2lvbkFuZFRlcm1Qb2xpY3lDb21wb25lbnQgfSBmcm9tICcuLi92ZXJzaW9uLWFuZC10ZXJtLXBvbGljeS92ZXJzaW9uLWFuZC10ZXJtLXBvbGljeS5jb21wb25lbnQnO1xyXG5cclxuXHJcbkBDb21wb25lbnQoe1xyXG4gICAgc2VsZWN0b3I6IFwiYW5uYS1jb2duaXRvLWNhdGMtbG9naW5cIixcclxuICAgIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgICBpbXBvcnRzOiBbXHJcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgICAgIE5nSWYsXHJcbiAgICAgICAgTmdPcHRpbWl6ZWRJbWFnZSxcclxuICAgICAgICBGb3Jtc01vZHVsZSxcclxuICAgICAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxyXG4gICAgICAgIE5nQ2xhc3MsXHJcbiAgICAgICAgUm91dGVyTGluayxcclxuICAgICAgICBTcGlubmVyQnV0dG9uRGlyZWN0aXZlLFxyXG4gICAgICAgIFBvd2VyZWRCeUxvZ29UZW1wbGF0ZUNvbXBvbmVudCxcclxuICAgICAgICBTdXJld2F2ZXNZZWFyTG9nb0NvbXBvbmVudCxcclxuICAgICAgICBWZXJzaW9uQW5kVGVybVBvbGljeUNvbXBvbmVudCxcclxuICAgIF0sXHJcbiAgICB0ZW1wbGF0ZVVybDogXCIuL2NhdGMtbG9naW4uY29tcG9uZW50Lmh0bWxcIixcclxuICAgIHN0eWxlVXJsczogW1wiLi9jYXRjLWxvZ2luLmNvbXBvbmVudC5zY3NzXCJdLFxyXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDYXRjTG9naW5Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgbG9naW5Gb3JtOiBGb3JtR3JvdXA7XHJcbiAgICBjb25zdGFudHM6IHR5cGVvZiBMb2dpbkNvbnN0YW50O1xyXG4gICAgZW1haWxQYXR0ZXJuID0gL1xcUytAXFxTK1xcLlxcUysvO1xyXG5cclxuICAgIGNvbnN0cnVjdG9yKFxyXG4gICAgICAgIHB1YmxpYyBhdXRoU2VydmljZTogQW5uYUxpYkF1dGhTZXJ2aWNlLFxyXG4gICAgICAgIHByaXZhdGUgZmI6IEZvcm1CdWlsZGVyLFxyXG4gICAgICAgIEBJbmplY3QoQ09ORklHX1NFUlZJQ0VfVE9LRU4pIHB1YmxpYyBjb25zdW1pbmdQcm9qZWN0Q29uZmlnU2VydmljZTogSUNvbmZpZ1NlcnZpY2UsXHJcbiAgICApIHt9XHJcblxyXG4gICAgbmdPbkluaXQoKSB7XHJcbiAgICAgICAgdGhpcy5hdXRoU2VydmljZS5jb25zdW1pbmdQcm9qZWN0QXV0aFNlcnZpY2UuaXNMb2dnaW5nSW4gPSBmYWxzZTtcclxuICAgICAgICB0aGlzLmNvbnN0YW50cyA9IExvZ2luQ29uc3RhbnQ7XHJcbiAgICAgICAgdGhpcy5vbkludGlhbGlzZUZvcm0oKTtcclxuICAgIH1cclxuXHJcbiAgICBvbkludGlhbGlzZUZvcm0oKSB7XHJcbiAgICAgICAgdGhpcy5sb2dpbkZvcm0gPSB0aGlzLmZiLmdyb3VwKHtcclxuICAgICAgICAgICAgZW1haWw6IFtudWxsLCBbVmFsaWRhdG9ycy5yZXF1aXJlZCwgVmFsaWRhdG9ycy5wYXR0ZXJuKHRoaXMuZW1haWxQYXR0ZXJuKV1dLFxyXG4gICAgICAgICAgICBwYXNzd29yZDogW251bGxdLFxyXG4gICAgICAgIH0pO1xyXG4gICAgfVxyXG5cclxuICAgIE9uTG9naW4oKSB7XHJcbiAgICAgICAgdGhpcy5hdXRoU2VydmljZS5jb25zdW1pbmdQcm9qZWN0QXV0aFNlcnZpY2UuaXNMb2dnaW5nSW4gPSB0cnVlO1xyXG4gICAgICAgIGNvbnN0IHVzZXJuYW1lID0gdGhpcy5sb2dpbkZvcm0uY29udHJvbHMuZW1haWwudmFsdWU7XHJcbiAgICAgICAgY29uc3QgcGFzc3dvcmQgPSB0aGlzLmxvZ2luRm9ybS5jb250cm9scy5wYXNzd29yZC52YWx1ZTtcclxuICAgICAgICB0aGlzLmF1dGhTZXJ2aWNlLmhhbmRsZVNpZ25Jbih7IHVzZXJuYW1lLCBwYXNzd29yZCB9KTtcclxuICAgIH1cclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwibWFpblwiPlxyXG4gICAgPCEtLSBMb2FkIGxvZ2luIHBhZ2Ugd2hlbiBhbGwgY29uc3RhbnQgdmFyaWFibGUgYXJlIGludGlhdGVkIG90aGVyd2lzZSBpdCB3aWxsIHNob3cgYSBnbGl0Y2guIHRoYXQncyB3aHkgbmdJZiBjaGVjayBvZiBjb25zdGFudHMuZm9yZ290UGFzc3dvcmQgLS0+XHJcbiAgICA8c2VjdGlvbiA+XHJcbiAgICAgICAgPGhlYWRlcj5cclxuICAgICAgICAgICAgPGltZ1xyXG4gICAgICAgICAgICAgICAgW25nU3JjXT1cImNvbnN1bWluZ1Byb2plY3RDb25maWdTZXJ2aWNlLmFwcEdlbmVyaWNDb25maWcubG9naW5QYWdlTG9nb0ltZ1VybFwiXHJcbiAgICAgICAgICAgICAgICB3aWR0aD1cIjE0NVwiXHJcbiAgICAgICAgICAgICAgICBoZWlnaHQ9XCI0NS4wM1wiXHJcbiAgICAgICAgICAgICAgICBhbHQ9XCJjYXRjIExvZ29cIlxyXG4gICAgICAgICAgICAgICAgcHJpb3JpdHlcclxuICAgICAgICAgICAgLz5cclxuICAgICAgICA8L2hlYWRlcj5cclxuICAgICAgICA8YXJ0aWNsZT5cclxuICAgICAgICAgICAgPGZvcm1cclxuICAgICAgICAgICAgICAgIFtmb3JtR3JvdXBdPVwibG9naW5Gb3JtXCJcclxuICAgICAgICAgICAgICAgIChuZ1N1Ym1pdCk9XCJPbkxvZ2luKClcIlxyXG4gICAgICAgICAgICA+XHJcbiAgICAgICAgICAgICAgICA8ZGl2XHJcbiAgICAgICAgICAgICAgICAgICAgaWQ9XCJhbGVydC1kaXZcIlxyXG4gICAgICAgICAgICAgICAgICAgICpuZ0lmPVwiYXV0aFNlcnZpY2UubG9naW5FcnJvck1lc3NhZ2VcIlxyXG4gICAgICAgICAgICAgICAgPlxyXG4gICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwibWF0ZXJpYWwtaWNvbnNcIj5yZXBvcnQ8L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgPHA+e3sgYXV0aFNlcnZpY2UubG9naW5FcnJvck1lc3NhZ2UgfX08L3A+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuXHJcbiAgICAgICAgICAgICAgICA8aW5wdXRcclxuICAgICAgICAgICAgICAgICAgICB0eXBlPVwidGV4dFwiXHJcbiAgICAgICAgICAgICAgICAgICAgdGFiaW5kZXg9XCIxXCJcclxuICAgICAgICAgICAgICAgICAgICBmb3JtQ29udHJvbE5hbWU9XCJlbWFpbFwiXHJcbiAgICAgICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwieyAnaW5wdXQtaW52YWxpZCc6IGF1dGhTZXJ2aWNlLmxvZ2luRXJyb3JNZXNzYWdlIH1cIlxyXG4gICAgICAgICAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCJjb25zdGFudHMuZW50ZXJFbWFpbFwiXHJcbiAgICAgICAgICAgICAgICAgICAgYXV0b2NvbXBsZXRlPVwiZW1haWxcIlxyXG4gICAgICAgICAgICAgICAgICAgIGF1dG9mb2N1c1xyXG4gICAgICAgICAgICAgICAgLz5cclxuXHJcbiAgICAgICAgICAgICAgICA8aW5wdXRcclxuICAgICAgICAgICAgICAgICAgICB0eXBlPVwicGFzc3dvcmRcIlxyXG4gICAgICAgICAgICAgICAgICAgIHRhYmluZGV4PVwiMlwiXHJcbiAgICAgICAgICAgICAgICAgICAgZm9ybUNvbnRyb2xOYW1lPVwicGFzc3dvcmRcIlxyXG4gICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgJ2lucHV0LWludmFsaWQnOiBhdXRoU2VydmljZS5sb2dpbkVycm9yTWVzc2FnZSB9XCJcclxuICAgICAgICAgICAgICAgICAgICBbcGxhY2Vob2xkZXJdPVwiY29uc3RhbnRzLnBhc3N3b3JkXCJcclxuICAgICAgICAgICAgICAgICAgICBhdXRvY29tcGxldGU9XCJjdXJyZW50LXBhc3N3b3JkXCJcclxuICAgICAgICAgICAgICAgICAgICBhdXRvZm9jdXNcclxuICAgICAgICAgICAgICAgIC8+XHJcblxyXG4gICAgICAgICAgICAgICAgPGFcclxuICAgICAgICAgICAgICAgICAgICB0YWJpbmRleD1cIjRcIlxyXG4gICAgICAgICAgICAgICAgICAgIFtyb3V0ZXJMaW5rXT1cImNvbnN0YW50cy5mb3Jnb3J0UGFzc3dvcmRQYWdlVXJsXCJcclxuICAgICAgICAgICAgICAgICAgICA+e3sgY29uc3RhbnRzLmZvcmdvdFBhc3N3b3JkIH19PC9hXHJcbiAgICAgICAgICAgICAgICA+XHJcbiAgICAgICAgICAgICAgICA8YnV0dG9uXHJcbiAgICAgICAgICAgICAgICAgICAgdGFiaW5kZXg9XCIzXCJcclxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cImxvZ2luLWJ0blwiXHJcbiAgICAgICAgICAgICAgICAgICAgYW5uYUNvZ25pdG9TcGlubmVyQnRuXHJcbiAgICAgICAgICAgICAgICAgICAgW3NwaW5uZXJCdXR0b25Mb2FkaW5nXT1cImF1dGhTZXJ2aWNlLmNvbnN1bWluZ1Byb2plY3RBdXRoU2VydmljZS5pc0xvZ2dpbmdJblwiXHJcbiAgICAgICAgICAgICAgICAgICAgW3NwaW5uZXJCdXR0b25UZXh0XT1cImNvbnN0YW50cy5sb2dpblwiXHJcbiAgICAgICAgICAgICAgICA+PC9idXR0b24+XHJcbiAgICAgICAgICAgIDwvZm9ybT5cclxuICAgICAgICA8L2FydGljbGU+XHJcbiAgICAgICAgPGZvb3Rlcj5cclxuICAgICAgICAgICAgPGFubmEtY29nbml0by1saWItcG93ZXJlZC1ieS1sb2dvLXRlbXBsYXRlPiA8L2FubmEtY29nbml0by1saWItcG93ZXJlZC1ieS1sb2dvLXRlbXBsYXRlPlxyXG4gICAgICAgIDwvZm9vdGVyPlxyXG4gICAgPC9zZWN0aW9uPlxyXG48L2Rpdj5cclxuXHJcbjxkaXYgY2xhc3M9XCJwYWdlLWZvb3RlclwiPlxyXG4gICAgPGFubmEtY29nbml0by1saWItc3VyZXdhdmVzLXllYXItbG9nbz48L2FubmEtY29nbml0by1saWItc3VyZXdhdmVzLXllYXItbG9nbz5cclxuICAgIDxhbm5hLWNvZ25pdG8tbGliLXZlcnNpb24tYW5kLXRlcm0tcG9saWN5PjwvYW5uYS1jb2duaXRvLWxpYi12ZXJzaW9uLWFuZC10ZXJtLXBvbGljeT5cclxuPC9kaXY+XHJcbiJdfQ==
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
-
import { IConfigService } from '../../config/config-service.token';
|
|
4
|
-
import { LoginConstant } from '../../constants/loginConstant';
|
|
5
|
-
import { AnnaLibAuthService } from '../../services/auth.service';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class CatcLoginComponent implements OnInit {
|
|
8
|
-
authService: AnnaLibAuthService;
|
|
9
|
-
private fb;
|
|
10
|
-
consumingProjectConfigService: IConfigService;
|
|
11
|
-
loginForm: FormGroup;
|
|
12
|
-
constants: typeof LoginConstant;
|
|
13
|
-
emailPattern: RegExp;
|
|
14
|
-
constructor(authService: AnnaLibAuthService, fb: FormBuilder, consumingProjectConfigService: IConfigService);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
onIntialiseForm(): void;
|
|
17
|
-
OnLogin(): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CatcLoginComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CatcLoginComponent, "anna-cognito-catc-login", never, {}, {}, never, never, true, never>;
|
|
20
|
-
}
|