@annalib/anna-cognito-lib 2.3.12 → 2.3.13
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/{esm2020 → esm2022}/annalib-anna-cognito-lib.mjs +4 -4
- package/{esm2020 → esm2022}/lib/components/anna-login/anna-login.component.mjs +67 -67
- package/{esm2020 → esm2022}/lib/components/cognito-and-sso-login-container/cognito-and-sso-login-container.component.mjs +22 -22
- package/{esm2020 → esm2022}/lib/components/forgot-password/forgot-password.component.mjs +133 -133
- package/{esm2020 → esm2022}/lib/components/password-matching/password-matching.component.mjs +92 -92
- package/{esm2020 → esm2022}/lib/components/powered-by-logo-template/powered-by-logo-template.component.mjs +14 -14
- package/{esm2020 → esm2022}/lib/components/set-new-password/set-new-password.component.mjs +71 -71
- package/{esm2020 → esm2022}/lib/components/sso-login/sso-login.component.mjs +38 -38
- package/{esm2020 → esm2022}/lib/components/surewaves-year-logo/surewaves-year-logo.component.mjs +15 -15
- package/{esm2020 → esm2022}/lib/components/verify-and-set-new-password/verify-and-set-new-password.component.mjs +90 -90
- package/{esm2020 → esm2022}/lib/components/version-and-term-policy/version-and-term-policy.component.mjs +19 -19
- package/{esm2020 → esm2022}/lib/config/acl-service.token.mjs +4 -4
- package/{esm2020 → esm2022}/lib/config/auth-service.token.mjs +3 -3
- package/{esm2020 → esm2022}/lib/config/config-service.token.mjs +3 -3
- package/{esm2020 → esm2022}/lib/config/sso-login-service.token.mjs +3 -3
- package/esm2022/lib/constants/loginConstant.mjs +55 -0
- package/{esm2020 → esm2022}/lib/directives/spinner-button/index.mjs +1 -1
- package/{esm2020 → esm2022}/lib/directives/spinner-button/spinner-button.directive.mjs +43 -43
- package/{esm2020 → esm2022}/lib/models/auth.model.mjs +23 -23
- package/{esm2020 → esm2022}/lib/services/acl.service.mjs +27 -27
- package/{esm2020 → esm2022}/lib/services/auth.service.mjs +312 -312
- package/{esm2020 → esm2022}/lib/services/config.service.mjs +20 -20
- package/{esm2020 → esm2022}/lib/services/sso-login.service.mjs +20 -20
- package/{esm2020 → esm2022}/public-api.mjs +27 -27
- package/{fesm2020 → fesm2022}/annalib-anna-cognito-lib.mjs +905 -905
- package/fesm2022/annalib-anna-cognito-lib.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/components/anna-login/anna-login.component.d.ts +20 -20
- package/lib/components/cognito-and-sso-login-container/cognito-and-sso-login-container.component.d.ts +10 -10
- package/lib/components/forgot-password/forgot-password.component.d.ts +42 -42
- package/lib/components/password-matching/password-matching.component.d.ts +22 -22
- package/lib/components/powered-by-logo-template/powered-by-logo-template.component.d.ts +8 -8
- package/lib/components/set-new-password/set-new-password.component.d.ts +28 -28
- package/lib/components/sso-login/sso-login.component.d.ts +14 -14
- package/lib/components/surewaves-year-logo/surewaves-year-logo.component.d.ts +9 -9
- package/lib/components/verify-and-set-new-password/verify-and-set-new-password.component.d.ts +32 -32
- package/lib/components/version-and-term-policy/version-and-term-policy.component.d.ts +10 -10
- package/lib/config/acl-service.token.d.ts +38 -38
- package/lib/config/auth-service.token.d.ts +23 -23
- package/lib/config/config-service.token.d.ts +13 -13
- package/lib/config/sso-login-service.token.d.ts +10 -10
- package/lib/constants/loginConstant.d.ts +49 -49
- package/lib/directives/spinner-button/index.d.ts +1 -1
- package/lib/directives/spinner-button/spinner-button.directive.d.ts +15 -15
- package/lib/models/auth.model.d.ts +21 -21
- package/lib/services/acl.service.d.ts +11 -11
- package/lib/services/auth.service.d.ts +47 -47
- package/lib/services/config.service.d.ts +8 -8
- package/lib/services/sso-login.service.d.ts +8 -8
- package/package.json +5 -11
- package/public-api.d.ts +20 -20
- package/esm2020/lib/constants/loginConstant.mjs +0 -55
- package/fesm2015/annalib-anna-cognito-lib.mjs +0 -1011
- package/fesm2015/annalib-anna-cognito-lib.mjs.map +0 -1
- package/fesm2020/annalib-anna-cognito-lib.mjs.map +0 -1
|
@@ -11,954 +11,954 @@ import { FormsModule, ReactiveFormsModule, Validators, FormBuilder } from '@angu
|
|
|
11
11
|
import { forkJoin } from 'rxjs';
|
|
12
12
|
import { debounceTime } from 'rxjs/operators';
|
|
13
13
|
|
|
14
|
-
/** Token to inject the auth service */
|
|
14
|
+
/** Token to inject the auth service */
|
|
15
15
|
const SSO_LOGIN_SERVICE_TOKEN = new InjectionToken('Cognito sso login service token');
|
|
16
16
|
|
|
17
|
-
/** Token to inject the auth service */
|
|
17
|
+
/** Token to inject the auth service */
|
|
18
18
|
const CONFIG_SERVICE_TOKEN = new InjectionToken('Cognito config service token');
|
|
19
19
|
|
|
20
|
-
class LoginConstant {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
20
|
+
class LoginConstant {
|
|
21
|
+
// Login page
|
|
22
|
+
static { this.enterEmail = 'Enter your username'; }
|
|
23
|
+
static { this.enterUserCode = 'Enter your usercode'; }
|
|
24
|
+
static { this.password = 'Password'; }
|
|
25
|
+
static { this.confirmPassword = 'Confirm Password'; }
|
|
26
|
+
static { this.login = 'Login'; }
|
|
27
|
+
static { this.otp = 'OTP'; }
|
|
28
|
+
static { this.forgotPassword = 'Forgot ' + LoginConstant.password.toLowerCase() + '?'; }
|
|
29
|
+
// set new password
|
|
30
|
+
static { this.setNewPasswordHeading = 'Set new ' + LoginConstant.password.toLowerCase(); }
|
|
31
|
+
static { this.setNewPasswordButton = 'Set and ' + LoginConstant.login.toLowerCase() + ' again'; }
|
|
32
|
+
static { this.passwordMustContain = 'The password must contain:'; }
|
|
33
|
+
static { this.minimumCharacter = 'Minimum 8 characters'; }
|
|
34
|
+
static { this.oneUppercase = '1 Uppercase'; }
|
|
35
|
+
static { this.oneLowercase = '1 Lowercase'; }
|
|
36
|
+
static { this.oneNumber = '1 Numerical'; }
|
|
37
|
+
static { this.specialCharacter = '1 Special character'; }
|
|
38
|
+
static { this.passwordNotMatching = 'The passwords do not match. Please try again.'; }
|
|
39
|
+
static { this.userNamePasswordIncorrect = 'Incorrect username or password'; }
|
|
40
|
+
static { this.userCodePasswordIncorrect = 'Incorrect usercode or password'; }
|
|
41
|
+
static { this.userNotFound = 'No registered user found'; }
|
|
42
|
+
static { this.loginAgain = LoginConstant.login + ' again'; }
|
|
43
|
+
static { this.firstTimeLoginUserTempPasswordMsg = 'You are logging in for the first time. Kindly use the temporary password provided in the welcome email, to login to your account. '; }
|
|
44
|
+
static { this.tempPasswordExpiryError = 'Temporary password has expired and must be reset by an administrator.'; }
|
|
45
|
+
static { this.tempPasswordOnExpiryErrorMsg = 'Password has expired. A new password has been sent to your registered email. Kindly login again with new link and credentials.'; }
|
|
46
|
+
// verify OTP & set new password
|
|
47
|
+
static { this.verifyAndSetNewPasswordheading = 'Enter ' + LoginConstant.otp + ' & set new password'; }
|
|
48
|
+
static { this.verifyAndSetNewPasswordMessage = 'An ' + LoginConstant.otp + ' has been succesfully emailed to '; }
|
|
49
|
+
static { this.pleaseEnterItBelow = '. Please enter it below.'; }
|
|
50
|
+
static { this.regenerateOtp = 'Regenerate ' + LoginConstant.otp; }
|
|
51
|
+
static { this.enterOtp = 'Enter ' + LoginConstant.otp; }
|
|
52
|
+
static { this.submit = 'Submit'; }
|
|
53
|
+
static { this.attempt = 'Attempt'; }
|
|
54
|
+
static { this.attemptLimitExceeded = 'You have exceeded the maximum number of allowed attempts. Please try again after 15 minutes.'; }
|
|
55
|
+
static { this.attemptMessage = ' of 5. The OTP entered is incorrect. Please try again with the right one.'; }
|
|
56
|
+
static { this.sessionExpired = 'The session has expired. Please try again.'; }
|
|
57
|
+
static { this.sessionExpiredError = 'Your session has expired. Please login again'; }
|
|
58
|
+
// forgot password
|
|
59
|
+
static { this.forgotPasswordHeading = 'Forgot your password?'; }
|
|
60
|
+
static { this.PleaseEnterYourUsernameMessage = 'Please enter your username.'; }
|
|
61
|
+
static { this.PleaseEnterYourUsercodeMessage = 'Please enter your usercode.'; }
|
|
62
|
+
static { this.forgotPasswordButton = 'Get ' + LoginConstant.otp; }
|
|
63
|
+
static { this.apiFailErrorMessage = 'Unable to connect to server right now. Please try after some time.'; }
|
|
64
|
+
//url
|
|
65
|
+
static { this.setNewPasswordUrl = '/set-new-password'; }
|
|
66
|
+
static { this.forgortPasswordPageUrl = '/forgot-password'; }
|
|
67
|
+
static { this.verifyAndSetNewPasswordUrl = '/verify-and-set-new-password'; }
|
|
68
|
+
static { this.loginPageUrl = '/login'; }
|
|
69
|
+
static { this.coPilotloginPageUrl = '/co-pilot-login'; }
|
|
70
|
+
static { this.welcomeScrreenUrl = '/welcome-screen'; }
|
|
71
|
+
static { this.homePageUrl = '/dashboard'; }
|
|
72
|
+
static { this.stationSettingUrl = '/station-settings'; }
|
|
73
|
+
}
|
|
74
74
|
|
|
75
|
-
/** Token to inject the auth service */
|
|
75
|
+
/** Token to inject the auth service */
|
|
76
76
|
const AUTH_SERVICE_TOKEN = new InjectionToken('Auth service token');
|
|
77
77
|
|
|
78
|
-
/** Token to inject the acl service */
|
|
78
|
+
/** Token to inject the acl service */
|
|
79
79
|
const ACL_SERVICE_TOKEN = new InjectionToken('ACL service token');
|
|
80
80
|
|
|
81
|
-
class AnnaLibAclService {
|
|
82
|
-
constructor(consumingProjectAclService) {
|
|
83
|
-
this.consumingProjectAclService = consumingProjectAclService;
|
|
84
|
-
}
|
|
85
|
-
isUserAuthorisedToAccessPage(url) {
|
|
86
|
-
let privilegeName = this.consumingProjectAclService.urlToCognitoPrivilegeMap[url];
|
|
87
|
-
return this.userGroupsInCognitoJWT.includes(privilegeName);
|
|
88
|
-
}
|
|
89
|
-
isUserAuthorisedToAccessElement(privilege) {
|
|
90
|
-
return this.userGroupsInCognitoJWT.includes(privilege);
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
96
|
-
type: Injectable,
|
|
97
|
-
args: [{
|
|
98
|
-
providedIn: 'root',
|
|
99
|
-
}]
|
|
100
|
-
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
101
|
-
type: Inject,
|
|
102
|
-
args: [ACL_SERVICE_TOKEN]
|
|
81
|
+
class AnnaLibAclService {
|
|
82
|
+
constructor(consumingProjectAclService) {
|
|
83
|
+
this.consumingProjectAclService = consumingProjectAclService;
|
|
84
|
+
}
|
|
85
|
+
isUserAuthorisedToAccessPage(url) {
|
|
86
|
+
let privilegeName = this.consumingProjectAclService.urlToCognitoPrivilegeMap[url];
|
|
87
|
+
return this.userGroupsInCognitoJWT.includes(privilegeName);
|
|
88
|
+
}
|
|
89
|
+
isUserAuthorisedToAccessElement(privilege) {
|
|
90
|
+
return this.userGroupsInCognitoJWT.includes(privilege);
|
|
91
|
+
}
|
|
92
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLibAclService, deps: [{ token: ACL_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
93
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLibAclService, providedIn: 'root' }); }
|
|
94
|
+
}
|
|
95
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLibAclService, decorators: [{
|
|
96
|
+
type: Injectable,
|
|
97
|
+
args: [{
|
|
98
|
+
providedIn: 'root',
|
|
99
|
+
}]
|
|
100
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
101
|
+
type: Inject,
|
|
102
|
+
args: [ACL_SERVICE_TOKEN]
|
|
103
103
|
}] }]; } });
|
|
104
104
|
|
|
105
|
-
// Angular import statements
|
|
106
|
-
class AnnaLibAuthService {
|
|
107
|
-
constructor(router, aclService, httpClient, toastr, consumingProjectSSOLoginService, consumingProjectAuthService) {
|
|
108
|
-
this.router = router;
|
|
109
|
-
this.aclService = aclService;
|
|
110
|
-
this.httpClient = httpClient;
|
|
111
|
-
this.toastr = toastr;
|
|
112
|
-
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
113
|
-
this.consumingProjectAuthService = consumingProjectAuthService;
|
|
114
|
-
this.noOfAttempts = 0;
|
|
115
|
-
this.sessionLocked = false;
|
|
116
|
-
if (!consumingProjectAuthService) {
|
|
117
|
-
throw new Error('You must provide a authService');
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
ngOnInit() { }
|
|
121
|
-
async isUserLoggedIn() {
|
|
122
|
-
try {
|
|
123
|
-
// await getCurrentUser();
|
|
124
|
-
return new Promise(async (resolve, reject) => {
|
|
125
|
-
const session = await fetchAuthSession();
|
|
126
|
-
if (session?.tokens) {
|
|
127
|
-
this.consumingProjectAuthService.IdToken = session?.tokens.idToken.toString();
|
|
128
|
-
this.consumingProjectAuthService.getAllCognitoTokenAndGroups(session.tokens);
|
|
129
|
-
resolve(true);
|
|
130
|
-
}
|
|
131
|
-
else {
|
|
132
|
-
this.toastr.error(LoginConstant.sessionExpiredError);
|
|
133
|
-
this.handleSignOut();
|
|
134
|
-
resolve(false);
|
|
135
|
-
}
|
|
136
|
-
});
|
|
137
|
-
}
|
|
138
|
-
catch (error) {
|
|
139
|
-
return new Promise((resolve) => {
|
|
140
|
-
clearInterval(this.accessTokenTimerId);
|
|
141
|
-
resolve(false);
|
|
142
|
-
});
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
sessionTimeout() {
|
|
146
|
-
localStorage.clear();
|
|
147
|
-
clearInterval(this.accessTokenTimerId);
|
|
148
|
-
let afterLogoutRedirectTo;
|
|
149
|
-
if (this.consumingProjectSSOLoginService.isSsoIntegrated &&
|
|
150
|
-
!this.consumingProjectSSOLoginService.loggedInViaSso) {
|
|
151
|
-
afterLogoutRedirectTo = LoginConstant.coPilotloginPageUrl;
|
|
152
|
-
}
|
|
153
|
-
else {
|
|
154
|
-
afterLogoutRedirectTo = LoginConstant.loginPageUrl;
|
|
155
|
-
}
|
|
156
|
-
this.router.navigate([afterLogoutRedirectTo]);
|
|
157
|
-
}
|
|
158
|
-
computeTokenExpiration(idToken) {
|
|
159
|
-
let currentTime = Math.floor(Date.now() / 1000);
|
|
160
|
-
let tokenTime = idToken.payload.exp;
|
|
161
|
-
let expTime = (tokenTime - currentTime) * 1000;
|
|
162
|
-
return expTime;
|
|
163
|
-
}
|
|
164
|
-
async handleSignIn({ username, password }) {
|
|
165
|
-
try {
|
|
166
|
-
let session = await fetchAuthSession();
|
|
167
|
-
if (session?.tokens) {
|
|
168
|
-
await this.handleSignOut();
|
|
169
|
-
}
|
|
170
|
-
const { isSignedIn, nextStep } = await signIn({ username, password });
|
|
171
|
-
switch (nextStep?.signInStep) {
|
|
172
|
-
case 'DONE':
|
|
173
|
-
let session = await fetchAuthSession();
|
|
174
|
-
this.onLoginOrSetNewPassword(session);
|
|
175
|
-
await this.consumingProjectAuthService.onSuccessfulAuthenticatingUser(false);
|
|
176
|
-
this.consumingProjectAuthService.getAllCognitoTokenAndGroups(session.tokens);
|
|
177
|
-
this.refreshAccessToken();
|
|
178
|
-
break;
|
|
179
|
-
case 'CONFIRM_SIGN_IN_WITH_NEW_PASSWORD_REQUIRED':
|
|
180
|
-
this.consumingProjectAuthService.isLoggingIn = false;
|
|
181
|
-
this.consumingProjectAuthService.userName = username;
|
|
182
|
-
this.router.navigate([LoginConstant.setNewPasswordUrl]);
|
|
183
|
-
this.setNewPasswordErrorMessage = null;
|
|
184
|
-
break;
|
|
185
|
-
case 'RESET_PASSWORD':
|
|
186
|
-
break;
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
catch (error) {
|
|
190
|
-
console.log(error);
|
|
191
|
-
this.consumingProjectAuthService.isLoggingIn = false;
|
|
192
|
-
if (error?.message == LoginConstant.tempPasswordExpiryError) {
|
|
193
|
-
this.loginErrorMessage = LoginConstant.tempPasswordOnExpiryErrorMsg;
|
|
194
|
-
this.consumingProjectAuthService.sendRegenerationEmail(username);
|
|
195
|
-
}
|
|
196
|
-
else if (error?.message === 'Password attempts exceeded') {
|
|
197
|
-
this.loginErrorMessage = LoginConstant.attemptLimitExceeded;
|
|
198
|
-
}
|
|
199
|
-
else {
|
|
200
|
-
this.loginErrorMessage = this.consumingProjectSSOLoginService.isSsoIntegrated
|
|
201
|
-
? LoginConstant.userCodePasswordIncorrect
|
|
202
|
-
: LoginConstant.userNamePasswordIncorrect;
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
onLoginOrSetNewPassword(session) {
|
|
207
|
-
let newExpTime = this.computeTokenExpiration(session.tokens.idToken);
|
|
208
|
-
this.consumingProjectAuthService.accessToken = session.tokens.accessToken.toString();
|
|
209
|
-
this.consumingProjectAuthService.IdToken = session.tokens.idToken.toString();
|
|
210
|
-
localStorage.setItem('accessTokenExpiration', newExpTime.toString());
|
|
211
|
-
this.refreshAccessToken();
|
|
212
|
-
this.loginErrorMessage = null;
|
|
213
|
-
}
|
|
214
|
-
setAccessAndIDTokens(token) {
|
|
215
|
-
this.consumingProjectAuthService.accessToken = token?.accessToken?.toString();
|
|
216
|
-
this.consumingProjectAuthService.IdToken = token?.idToken;
|
|
217
|
-
}
|
|
218
|
-
async getAllCognitoTokenAndGroups(token) {
|
|
219
|
-
this.setAccessAndIDTokens(token);
|
|
220
|
-
if ('cognito:groups' in token.accessToken.payload) {
|
|
221
|
-
let userGroupsInCognitoJWT = token.accessToken.payload['cognito:groups'];
|
|
222
|
-
this.aclService.userGroupsInCognitoJWT = userGroupsInCognitoJWT;
|
|
223
|
-
}
|
|
224
|
-
else {
|
|
225
|
-
this.aclService.userGroupsInCognitoJWT = [];
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
refreshAccessToken() {
|
|
229
|
-
let accessTokenExpiration = localStorage.getItem('accessTokenExpiration');
|
|
230
|
-
let expTime = accessTokenExpiration ? parseInt(accessTokenExpiration) : 0;
|
|
231
|
-
this.accessTokenTimerId = setInterval(() => {
|
|
232
|
-
let counter = 1000;
|
|
233
|
-
let delayFunction = setTimeout(async () => {
|
|
234
|
-
try {
|
|
235
|
-
let session = await fetchAuthSession();
|
|
236
|
-
let token = session.tokens;
|
|
237
|
-
if (token) {
|
|
238
|
-
this.consumingProjectAuthService.getAllCognitoTokenAndGroups(token);
|
|
239
|
-
let newExpTime = this.computeTokenExpiration(this.consumingProjectAuthService.IdToken);
|
|
240
|
-
if (newExpTime <= 0) {
|
|
241
|
-
newExpTime = 1000;
|
|
242
|
-
counter = 0;
|
|
243
|
-
if (delayFunction) {
|
|
244
|
-
clearInterval(delayFunction);
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
expTime = newExpTime;
|
|
248
|
-
localStorage.setItem('accessTokenExpiration', newExpTime.toString());
|
|
249
|
-
clearInterval(this.accessTokenTimerId);
|
|
250
|
-
this.refreshAccessToken();
|
|
251
|
-
}
|
|
252
|
-
else {
|
|
253
|
-
this.toastr.error(LoginConstant.sessionExpiredError);
|
|
254
|
-
this.handleSignOut();
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
catch (error) {
|
|
258
|
-
this.toastr.error(LoginConstant.sessionExpiredError);
|
|
259
|
-
this.handleSignOut();
|
|
260
|
-
}
|
|
261
|
-
}, counter);
|
|
262
|
-
}, expTime);
|
|
263
|
-
}
|
|
264
|
-
async changePassword(newPassword) {
|
|
265
|
-
try {
|
|
266
|
-
let inputParam = {
|
|
267
|
-
challengeResponse: newPassword,
|
|
268
|
-
};
|
|
269
|
-
const data = await confirmSignIn(inputParam);
|
|
270
|
-
const { username } = await getCurrentUser();
|
|
271
|
-
console.log(data);
|
|
272
|
-
let session = await fetchAuthSession();
|
|
273
|
-
this.onLoginOrSetNewPassword(session);
|
|
274
|
-
this.consumingProjectAuthService.onPasswordUpdate(username);
|
|
275
|
-
this.router.navigate([LoginConstant.loginPageUrl]);
|
|
276
|
-
this.consumingProjectAuthService.newPasswordSetThenUpdateToBackend(username);
|
|
277
|
-
}
|
|
278
|
-
catch (err) {
|
|
279
|
-
console.log(err);
|
|
280
|
-
this.setNewPasswordErrorMessage = LoginConstant.sessionExpired;
|
|
281
|
-
this.setNewPasswordButtonMessage = LoginConstant.loginAgain;
|
|
282
|
-
}
|
|
283
|
-
}
|
|
284
|
-
async onForgotPasswordGenerateOTP(email) {
|
|
285
|
-
let username = email;
|
|
286
|
-
this.consumingProjectAuthService.userName = email;
|
|
287
|
-
try {
|
|
288
|
-
let result = await resetPassword({ username });
|
|
289
|
-
this.verifyAndSetNewPasswordMessage =
|
|
290
|
-
LoginConstant.verifyAndSetNewPasswordMessage +
|
|
291
|
-
result?.nextStep?.codeDeliveryDetails?.destination +
|
|
292
|
-
LoginConstant.pleaseEnterItBelow;
|
|
293
|
-
this.router.navigate([LoginConstant.verifyAndSetNewPasswordUrl]);
|
|
294
|
-
}
|
|
295
|
-
catch (err) { }
|
|
296
|
-
}
|
|
297
|
-
async verifyCode(confirmationCode, newPassword) {
|
|
298
|
-
try {
|
|
299
|
-
confirmResetPassword({
|
|
300
|
-
username: this.consumingProjectAuthService.userName,
|
|
301
|
-
newPassword: newPassword,
|
|
302
|
-
confirmationCode: confirmationCode,
|
|
303
|
-
}).then((response) => {
|
|
304
|
-
this.expiryAllExistingCurrentSession(this.consumingProjectAuthService.userName, newPassword);
|
|
305
|
-
}, (err) => {
|
|
306
|
-
this.noOfAttempts = this.noOfAttempts + 1;
|
|
307
|
-
this.verifyAndSetNewPasswordErrorMessage = this.forgotPasswordError(err, this.noOfAttempts);
|
|
308
|
-
});
|
|
309
|
-
}
|
|
310
|
-
catch (err) {
|
|
311
|
-
this.noOfAttempts = this.noOfAttempts + 1;
|
|
312
|
-
this.verifyAndSetNewPasswordErrorMessage = this.forgotPasswordError(err, this.noOfAttempts);
|
|
313
|
-
}
|
|
314
|
-
finally {
|
|
315
|
-
this.forgotPasswordAndGlobalSignoutLoader = false;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
forgotPasswordError(err, noOfAttempts) {
|
|
319
|
-
let errorMessage = '';
|
|
320
|
-
console.log(err);
|
|
321
|
-
let errorThrown = JSON.stringify(err);
|
|
322
|
-
if (errorThrown.includes('LimitExceededException')) {
|
|
323
|
-
this.sessionLocked = true;
|
|
324
|
-
errorMessage = LoginConstant.attemptLimitExceeded;
|
|
325
|
-
}
|
|
326
|
-
else if (errorThrown.includes('ExpiredCodeException')) {
|
|
327
|
-
errorMessage = LoginConstant.sessionExpired;
|
|
328
|
-
this.verifyAndSetNewPasswordButton = LoginConstant.regenerateOtp;
|
|
329
|
-
}
|
|
330
|
-
else {
|
|
331
|
-
errorMessage = LoginConstant.attempt + ' ' + noOfAttempts + LoginConstant.attemptMessage;
|
|
332
|
-
}
|
|
333
|
-
return errorMessage;
|
|
334
|
-
}
|
|
335
|
-
async signInWithSSO() {
|
|
336
|
-
let session = await fetchAuthSession();
|
|
337
|
-
if (session?.tokens) {
|
|
338
|
-
await this.handleSignOut().then((response) => {
|
|
339
|
-
this.consumingProjectAuthService.signInWithSSO();
|
|
340
|
-
});
|
|
341
|
-
}
|
|
342
|
-
else {
|
|
343
|
-
this.consumingProjectAuthService.signInWithSSO();
|
|
344
|
-
}
|
|
345
|
-
}
|
|
346
|
-
async handleSignOut() {
|
|
347
|
-
try {
|
|
348
|
-
await signOut({ global: false });
|
|
349
|
-
this.sessionTimeout();
|
|
350
|
-
}
|
|
351
|
-
catch (error) {
|
|
352
|
-
console.log('error signing out: ', error);
|
|
353
|
-
}
|
|
354
|
-
}
|
|
355
|
-
expiryAllExistingCurrentSession(username, newPassword) {
|
|
356
|
-
this.loginErrorMessage = null;
|
|
357
|
-
this.onLoginInCogntioToGetAccessToken(username, newPassword);
|
|
358
|
-
}
|
|
359
|
-
async onLoginInCogntioToGetAccessToken(username, password) {
|
|
360
|
-
try {
|
|
361
|
-
const { nextStep } = await signIn({ username, password });
|
|
362
|
-
switch (nextStep?.signInStep) {
|
|
363
|
-
case 'DONE':
|
|
364
|
-
this.setAccessAndIDTokens(await (await fetchAuthSession()).tokens);
|
|
365
|
-
this.consumingProjectAuthService.onPasswordUpdate(this.consumingProjectAuthService.userName);
|
|
366
|
-
this.onCallGlobalSignout();
|
|
367
|
-
break;
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
catch (error) {
|
|
371
|
-
this.noOfAttempts = this.noOfAttempts + 1;
|
|
372
|
-
this.verifyAndSetNewPasswordErrorMessage = this.forgotPasswordError(error, this.noOfAttempts);
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
|
-
async onCallGlobalSignout() {
|
|
376
|
-
try {
|
|
377
|
-
await signOut({ global: true });
|
|
378
|
-
this.forgotPasswordAndGlobalSignoutLoader = false;
|
|
379
|
-
this.router.navigate([LoginConstant.loginPageUrl]);
|
|
380
|
-
}
|
|
381
|
-
catch (error) {
|
|
382
|
-
console.log('error signing out: ', error);
|
|
383
|
-
}
|
|
384
|
-
}
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
389
|
-
type: Injectable,
|
|
390
|
-
args: [{
|
|
391
|
-
providedIn: 'root',
|
|
392
|
-
}]
|
|
393
|
-
}], ctorParameters: function () { return [{ type: i1.Router }, { type: AnnaLibAclService }, { type: i3.HttpClient }, { type: i4.ToastrService }, { type: undefined, decorators: [{
|
|
394
|
-
type: Inject,
|
|
395
|
-
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
396
|
-
}] }, { type: undefined, decorators: [{
|
|
397
|
-
type: Inject,
|
|
398
|
-
args: [AUTH_SERVICE_TOKEN]
|
|
105
|
+
// Angular import statements
|
|
106
|
+
class AnnaLibAuthService {
|
|
107
|
+
constructor(router, aclService, httpClient, toastr, consumingProjectSSOLoginService, consumingProjectAuthService) {
|
|
108
|
+
this.router = router;
|
|
109
|
+
this.aclService = aclService;
|
|
110
|
+
this.httpClient = httpClient;
|
|
111
|
+
this.toastr = toastr;
|
|
112
|
+
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
113
|
+
this.consumingProjectAuthService = consumingProjectAuthService;
|
|
114
|
+
this.noOfAttempts = 0;
|
|
115
|
+
this.sessionLocked = false;
|
|
116
|
+
if (!consumingProjectAuthService) {
|
|
117
|
+
throw new Error('You must provide a authService');
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
ngOnInit() { }
|
|
121
|
+
async isUserLoggedIn() {
|
|
122
|
+
try {
|
|
123
|
+
// await getCurrentUser();
|
|
124
|
+
return new Promise(async (resolve, reject) => {
|
|
125
|
+
const session = await fetchAuthSession();
|
|
126
|
+
if (session?.tokens) {
|
|
127
|
+
this.consumingProjectAuthService.IdToken = session?.tokens.idToken.toString();
|
|
128
|
+
this.consumingProjectAuthService.getAllCognitoTokenAndGroups(session.tokens);
|
|
129
|
+
resolve(true);
|
|
130
|
+
}
|
|
131
|
+
else {
|
|
132
|
+
this.toastr.error(LoginConstant.sessionExpiredError);
|
|
133
|
+
this.handleSignOut();
|
|
134
|
+
resolve(false);
|
|
135
|
+
}
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
catch (error) {
|
|
139
|
+
return new Promise((resolve) => {
|
|
140
|
+
clearInterval(this.accessTokenTimerId);
|
|
141
|
+
resolve(false);
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
sessionTimeout() {
|
|
146
|
+
localStorage.clear();
|
|
147
|
+
clearInterval(this.accessTokenTimerId);
|
|
148
|
+
let afterLogoutRedirectTo;
|
|
149
|
+
if (this.consumingProjectSSOLoginService.isSsoIntegrated &&
|
|
150
|
+
!this.consumingProjectSSOLoginService.loggedInViaSso) {
|
|
151
|
+
afterLogoutRedirectTo = LoginConstant.coPilotloginPageUrl;
|
|
152
|
+
}
|
|
153
|
+
else {
|
|
154
|
+
afterLogoutRedirectTo = LoginConstant.loginPageUrl;
|
|
155
|
+
}
|
|
156
|
+
this.router.navigate([afterLogoutRedirectTo]);
|
|
157
|
+
}
|
|
158
|
+
computeTokenExpiration(idToken) {
|
|
159
|
+
let currentTime = Math.floor(Date.now() / 1000);
|
|
160
|
+
let tokenTime = idToken.payload.exp;
|
|
161
|
+
let expTime = (tokenTime - currentTime) * 1000;
|
|
162
|
+
return expTime;
|
|
163
|
+
}
|
|
164
|
+
async handleSignIn({ username, password }) {
|
|
165
|
+
try {
|
|
166
|
+
let session = await fetchAuthSession();
|
|
167
|
+
if (session?.tokens) {
|
|
168
|
+
await this.handleSignOut();
|
|
169
|
+
}
|
|
170
|
+
const { isSignedIn, nextStep } = await signIn({ username, password });
|
|
171
|
+
switch (nextStep?.signInStep) {
|
|
172
|
+
case 'DONE':
|
|
173
|
+
let session = await fetchAuthSession();
|
|
174
|
+
this.onLoginOrSetNewPassword(session);
|
|
175
|
+
await this.consumingProjectAuthService.onSuccessfulAuthenticatingUser(false);
|
|
176
|
+
this.consumingProjectAuthService.getAllCognitoTokenAndGroups(session.tokens);
|
|
177
|
+
this.refreshAccessToken();
|
|
178
|
+
break;
|
|
179
|
+
case 'CONFIRM_SIGN_IN_WITH_NEW_PASSWORD_REQUIRED':
|
|
180
|
+
this.consumingProjectAuthService.isLoggingIn = false;
|
|
181
|
+
this.consumingProjectAuthService.userName = username;
|
|
182
|
+
this.router.navigate([LoginConstant.setNewPasswordUrl]);
|
|
183
|
+
this.setNewPasswordErrorMessage = null;
|
|
184
|
+
break;
|
|
185
|
+
case 'RESET_PASSWORD':
|
|
186
|
+
break;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
catch (error) {
|
|
190
|
+
console.log(error);
|
|
191
|
+
this.consumingProjectAuthService.isLoggingIn = false;
|
|
192
|
+
if (error?.message == LoginConstant.tempPasswordExpiryError) {
|
|
193
|
+
this.loginErrorMessage = LoginConstant.tempPasswordOnExpiryErrorMsg;
|
|
194
|
+
this.consumingProjectAuthService.sendRegenerationEmail(username);
|
|
195
|
+
}
|
|
196
|
+
else if (error?.message === 'Password attempts exceeded') {
|
|
197
|
+
this.loginErrorMessage = LoginConstant.attemptLimitExceeded;
|
|
198
|
+
}
|
|
199
|
+
else {
|
|
200
|
+
this.loginErrorMessage = this.consumingProjectSSOLoginService.isSsoIntegrated
|
|
201
|
+
? LoginConstant.userCodePasswordIncorrect
|
|
202
|
+
: LoginConstant.userNamePasswordIncorrect;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
onLoginOrSetNewPassword(session) {
|
|
207
|
+
let newExpTime = this.computeTokenExpiration(session.tokens.idToken);
|
|
208
|
+
this.consumingProjectAuthService.accessToken = session.tokens.accessToken.toString();
|
|
209
|
+
this.consumingProjectAuthService.IdToken = session.tokens.idToken.toString();
|
|
210
|
+
localStorage.setItem('accessTokenExpiration', newExpTime.toString());
|
|
211
|
+
this.refreshAccessToken();
|
|
212
|
+
this.loginErrorMessage = null;
|
|
213
|
+
}
|
|
214
|
+
setAccessAndIDTokens(token) {
|
|
215
|
+
this.consumingProjectAuthService.accessToken = token?.accessToken?.toString();
|
|
216
|
+
this.consumingProjectAuthService.IdToken = token?.idToken;
|
|
217
|
+
}
|
|
218
|
+
async getAllCognitoTokenAndGroups(token) {
|
|
219
|
+
this.setAccessAndIDTokens(token);
|
|
220
|
+
if ('cognito:groups' in token.accessToken.payload) {
|
|
221
|
+
let userGroupsInCognitoJWT = token.accessToken.payload['cognito:groups'];
|
|
222
|
+
this.aclService.userGroupsInCognitoJWT = userGroupsInCognitoJWT;
|
|
223
|
+
}
|
|
224
|
+
else {
|
|
225
|
+
this.aclService.userGroupsInCognitoJWT = [];
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
refreshAccessToken() {
|
|
229
|
+
let accessTokenExpiration = localStorage.getItem('accessTokenExpiration');
|
|
230
|
+
let expTime = accessTokenExpiration ? parseInt(accessTokenExpiration) : 0;
|
|
231
|
+
this.accessTokenTimerId = setInterval(() => {
|
|
232
|
+
let counter = 1000;
|
|
233
|
+
let delayFunction = setTimeout(async () => {
|
|
234
|
+
try {
|
|
235
|
+
let session = await fetchAuthSession();
|
|
236
|
+
let token = session.tokens;
|
|
237
|
+
if (token) {
|
|
238
|
+
this.consumingProjectAuthService.getAllCognitoTokenAndGroups(token);
|
|
239
|
+
let newExpTime = this.computeTokenExpiration(this.consumingProjectAuthService.IdToken);
|
|
240
|
+
if (newExpTime <= 0) {
|
|
241
|
+
newExpTime = 1000;
|
|
242
|
+
counter = 0;
|
|
243
|
+
if (delayFunction) {
|
|
244
|
+
clearInterval(delayFunction);
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
expTime = newExpTime;
|
|
248
|
+
localStorage.setItem('accessTokenExpiration', newExpTime.toString());
|
|
249
|
+
clearInterval(this.accessTokenTimerId);
|
|
250
|
+
this.refreshAccessToken();
|
|
251
|
+
}
|
|
252
|
+
else {
|
|
253
|
+
this.toastr.error(LoginConstant.sessionExpiredError);
|
|
254
|
+
this.handleSignOut();
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
catch (error) {
|
|
258
|
+
this.toastr.error(LoginConstant.sessionExpiredError);
|
|
259
|
+
this.handleSignOut();
|
|
260
|
+
}
|
|
261
|
+
}, counter);
|
|
262
|
+
}, expTime);
|
|
263
|
+
}
|
|
264
|
+
async changePassword(newPassword) {
|
|
265
|
+
try {
|
|
266
|
+
let inputParam = {
|
|
267
|
+
challengeResponse: newPassword,
|
|
268
|
+
};
|
|
269
|
+
const data = await confirmSignIn(inputParam);
|
|
270
|
+
const { username } = await getCurrentUser();
|
|
271
|
+
console.log(data);
|
|
272
|
+
let session = await fetchAuthSession();
|
|
273
|
+
this.onLoginOrSetNewPassword(session);
|
|
274
|
+
this.consumingProjectAuthService.onPasswordUpdate(username);
|
|
275
|
+
this.router.navigate([LoginConstant.loginPageUrl]);
|
|
276
|
+
this.consumingProjectAuthService.newPasswordSetThenUpdateToBackend(username);
|
|
277
|
+
}
|
|
278
|
+
catch (err) {
|
|
279
|
+
console.log(err);
|
|
280
|
+
this.setNewPasswordErrorMessage = LoginConstant.sessionExpired;
|
|
281
|
+
this.setNewPasswordButtonMessage = LoginConstant.loginAgain;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
async onForgotPasswordGenerateOTP(email) {
|
|
285
|
+
let username = email;
|
|
286
|
+
this.consumingProjectAuthService.userName = email;
|
|
287
|
+
try {
|
|
288
|
+
let result = await resetPassword({ username });
|
|
289
|
+
this.verifyAndSetNewPasswordMessage =
|
|
290
|
+
LoginConstant.verifyAndSetNewPasswordMessage +
|
|
291
|
+
result?.nextStep?.codeDeliveryDetails?.destination +
|
|
292
|
+
LoginConstant.pleaseEnterItBelow;
|
|
293
|
+
this.router.navigate([LoginConstant.verifyAndSetNewPasswordUrl]);
|
|
294
|
+
}
|
|
295
|
+
catch (err) { }
|
|
296
|
+
}
|
|
297
|
+
async verifyCode(confirmationCode, newPassword) {
|
|
298
|
+
try {
|
|
299
|
+
confirmResetPassword({
|
|
300
|
+
username: this.consumingProjectAuthService.userName,
|
|
301
|
+
newPassword: newPassword,
|
|
302
|
+
confirmationCode: confirmationCode,
|
|
303
|
+
}).then((response) => {
|
|
304
|
+
this.expiryAllExistingCurrentSession(this.consumingProjectAuthService.userName, newPassword);
|
|
305
|
+
}, (err) => {
|
|
306
|
+
this.noOfAttempts = this.noOfAttempts + 1;
|
|
307
|
+
this.verifyAndSetNewPasswordErrorMessage = this.forgotPasswordError(err, this.noOfAttempts);
|
|
308
|
+
});
|
|
309
|
+
}
|
|
310
|
+
catch (err) {
|
|
311
|
+
this.noOfAttempts = this.noOfAttempts + 1;
|
|
312
|
+
this.verifyAndSetNewPasswordErrorMessage = this.forgotPasswordError(err, this.noOfAttempts);
|
|
313
|
+
}
|
|
314
|
+
finally {
|
|
315
|
+
this.forgotPasswordAndGlobalSignoutLoader = false;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
forgotPasswordError(err, noOfAttempts) {
|
|
319
|
+
let errorMessage = '';
|
|
320
|
+
console.log(err);
|
|
321
|
+
let errorThrown = JSON.stringify(err);
|
|
322
|
+
if (errorThrown.includes('LimitExceededException')) {
|
|
323
|
+
this.sessionLocked = true;
|
|
324
|
+
errorMessage = LoginConstant.attemptLimitExceeded;
|
|
325
|
+
}
|
|
326
|
+
else if (errorThrown.includes('ExpiredCodeException')) {
|
|
327
|
+
errorMessage = LoginConstant.sessionExpired;
|
|
328
|
+
this.verifyAndSetNewPasswordButton = LoginConstant.regenerateOtp;
|
|
329
|
+
}
|
|
330
|
+
else {
|
|
331
|
+
errorMessage = LoginConstant.attempt + ' ' + noOfAttempts + LoginConstant.attemptMessage;
|
|
332
|
+
}
|
|
333
|
+
return errorMessage;
|
|
334
|
+
}
|
|
335
|
+
async signInWithSSO() {
|
|
336
|
+
let session = await fetchAuthSession();
|
|
337
|
+
if (session?.tokens) {
|
|
338
|
+
await this.handleSignOut().then((response) => {
|
|
339
|
+
this.consumingProjectAuthService.signInWithSSO();
|
|
340
|
+
});
|
|
341
|
+
}
|
|
342
|
+
else {
|
|
343
|
+
this.consumingProjectAuthService.signInWithSSO();
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
async handleSignOut() {
|
|
347
|
+
try {
|
|
348
|
+
await signOut({ global: false });
|
|
349
|
+
this.sessionTimeout();
|
|
350
|
+
}
|
|
351
|
+
catch (error) {
|
|
352
|
+
console.log('error signing out: ', error);
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
expiryAllExistingCurrentSession(username, newPassword) {
|
|
356
|
+
this.loginErrorMessage = null;
|
|
357
|
+
this.onLoginInCogntioToGetAccessToken(username, newPassword);
|
|
358
|
+
}
|
|
359
|
+
async onLoginInCogntioToGetAccessToken(username, password) {
|
|
360
|
+
try {
|
|
361
|
+
const { nextStep } = await signIn({ username, password });
|
|
362
|
+
switch (nextStep?.signInStep) {
|
|
363
|
+
case 'DONE':
|
|
364
|
+
this.setAccessAndIDTokens(await (await fetchAuthSession()).tokens);
|
|
365
|
+
this.consumingProjectAuthService.onPasswordUpdate(this.consumingProjectAuthService.userName);
|
|
366
|
+
this.onCallGlobalSignout();
|
|
367
|
+
break;
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
catch (error) {
|
|
371
|
+
this.noOfAttempts = this.noOfAttempts + 1;
|
|
372
|
+
this.verifyAndSetNewPasswordErrorMessage = this.forgotPasswordError(error, this.noOfAttempts);
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
async onCallGlobalSignout() {
|
|
376
|
+
try {
|
|
377
|
+
await signOut({ global: true });
|
|
378
|
+
this.forgotPasswordAndGlobalSignoutLoader = false;
|
|
379
|
+
this.router.navigate([LoginConstant.loginPageUrl]);
|
|
380
|
+
}
|
|
381
|
+
catch (error) {
|
|
382
|
+
console.log('error signing out: ', error);
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLibAuthService, deps: [{ token: i1.Router }, { token: AnnaLibAclService }, { token: i3.HttpClient }, { token: i4.ToastrService }, { token: SSO_LOGIN_SERVICE_TOKEN }, { token: AUTH_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
386
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLibAuthService, providedIn: 'root' }); }
|
|
387
|
+
}
|
|
388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLibAuthService, decorators: [{
|
|
389
|
+
type: Injectable,
|
|
390
|
+
args: [{
|
|
391
|
+
providedIn: 'root',
|
|
392
|
+
}]
|
|
393
|
+
}], ctorParameters: function () { return [{ type: i1.Router }, { type: AnnaLibAclService }, { type: i3.HttpClient }, { type: i4.ToastrService }, { type: undefined, decorators: [{
|
|
394
|
+
type: Inject,
|
|
395
|
+
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
396
|
+
}] }, { type: undefined, decorators: [{
|
|
397
|
+
type: Inject,
|
|
398
|
+
args: [AUTH_SERVICE_TOKEN]
|
|
399
399
|
}] }]; } });
|
|
400
400
|
|
|
401
|
-
class VersionAndTermPolicyComponent {
|
|
402
|
-
constructor(consumingProjectConfigService) {
|
|
403
|
-
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
404
|
-
}
|
|
405
|
-
ngOnInit() { }
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
410
|
-
type: Component,
|
|
411
|
-
args: [{ selector: 'anna-cognito-lib-version-and-term-policy', standalone: true, template: "<p class=\"verison-and-policy\">Version {{ consumingProjectConfigService.appGenericConfig.currentAnnaVersion }}</p>\r\n", styles: [".verison-and-policy{font-size:12px;font-family:Roboto;display:flex;justify-content:center;margin:0}\n"] }]
|
|
412
|
-
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
413
|
-
type: Inject,
|
|
414
|
-
args: [CONFIG_SERVICE_TOKEN]
|
|
401
|
+
class VersionAndTermPolicyComponent {
|
|
402
|
+
constructor(consumingProjectConfigService) {
|
|
403
|
+
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
404
|
+
}
|
|
405
|
+
ngOnInit() { }
|
|
406
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: VersionAndTermPolicyComponent, deps: [{ token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
407
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: VersionAndTermPolicyComponent, isStandalone: true, selector: "anna-cognito-lib-version-and-term-policy", ngImport: i0, template: "<p class=\"verison-and-policy\">Version {{ consumingProjectConfigService.appGenericConfig.currentAnnaVersion }}</p>\r\n", styles: [".verison-and-policy{font-size:12px;font-family:Roboto;display:flex;justify-content:center;margin:0}\n"] }); }
|
|
408
|
+
}
|
|
409
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: VersionAndTermPolicyComponent, decorators: [{
|
|
410
|
+
type: Component,
|
|
411
|
+
args: [{ selector: 'anna-cognito-lib-version-and-term-policy', standalone: true, template: "<p class=\"verison-and-policy\">Version {{ consumingProjectConfigService.appGenericConfig.currentAnnaVersion }}</p>\r\n", styles: [".verison-and-policy{font-size:12px;font-family:Roboto;display:flex;justify-content:center;margin:0}\n"] }]
|
|
412
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
413
|
+
type: Inject,
|
|
414
|
+
args: [CONFIG_SERVICE_TOKEN]
|
|
415
415
|
}] }]; } });
|
|
416
416
|
|
|
417
|
-
class SurewavesYearLogoComponent {
|
|
418
|
-
constructor() { }
|
|
419
|
-
ngOnInit() {
|
|
420
|
-
this.currentYear = new Date().getFullYear();
|
|
421
|
-
}
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
426
|
-
type: Component,
|
|
427
|
-
args: [{ selector: 'anna-cognito-lib-surewaves-year-logo', standalone: true, template: "<div class=\"surewaves-year-logo\">\u00A9 SureWaves {{ currentYear }}. All rights reserved.</div>\r\n", styles: [".surewaves-year-logo{color:#7a7a7a;font-size:12px;font-family:Roboto;margin-bottom:0;display:flex;justify-content:center}\n"] }]
|
|
417
|
+
class SurewavesYearLogoComponent {
|
|
418
|
+
constructor() { }
|
|
419
|
+
ngOnInit() {
|
|
420
|
+
this.currentYear = new Date().getFullYear();
|
|
421
|
+
}
|
|
422
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SurewavesYearLogoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
423
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SurewavesYearLogoComponent, isStandalone: true, selector: "anna-cognito-lib-surewaves-year-logo", ngImport: i0, template: "<div class=\"surewaves-year-logo\">\u00A9 SureWaves {{ currentYear }}. All rights reserved.</div>\r\n", styles: [".surewaves-year-logo{color:#7a7a7a;font-size:12px;font-family:Roboto;margin-bottom:0;display:flex;justify-content:center}\n"] }); }
|
|
424
|
+
}
|
|
425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SurewavesYearLogoComponent, decorators: [{
|
|
426
|
+
type: Component,
|
|
427
|
+
args: [{ selector: 'anna-cognito-lib-surewaves-year-logo', standalone: true, template: "<div class=\"surewaves-year-logo\">\u00A9 SureWaves {{ currentYear }}. All rights reserved.</div>\r\n", styles: [".surewaves-year-logo{color:#7a7a7a;font-size:12px;font-family:Roboto;margin-bottom:0;display:flex;justify-content:center}\n"] }]
|
|
428
428
|
}], ctorParameters: function () { return []; } });
|
|
429
429
|
|
|
430
|
-
class PoweredByLogoTemplateComponent {
|
|
431
|
-
constructor() { }
|
|
432
|
-
ngOnInit() { }
|
|
433
|
-
}
|
|
434
|
-
PoweredByLogoTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PoweredByLogoTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
435
|
-
PoweredByLogoTemplateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PoweredByLogoTemplateComponent, isStandalone: true, selector: "anna-cognito-lib-powered-by-logo-template", ngImport: i0, template: "<ng-container [ngTemplateOutlet]=\"poweredBySurewavesLogo\"> </ng-container>\r\n\r\n<ng-template #poweredBySurewavesLogo>\r\n <svg\r\n width=\"230px\"\r\n height=\"69px\"\r\n viewBox=\"0 0 230 69\"\r\n version=\"1.1\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\r\n >\r\n <defs>\r\n <path\r\n d=\"M2.576,1.064 C3.93866667,1.064 4.98633333,1.323 5.719,1.841 C6.45166667,2.359 6.818,3.13133333 6.818,4.158 C6.818,4.718 6.71766667,5.19633333 6.517,5.593 C6.31633333,5.98966667 6.027,6.31166667 5.649,6.559 C5.271,6.80633333 4.81133333,6.986 4.27,7.098 C3.72866667,7.21 3.11733333,7.266 2.436,7.266 L1.358,7.266 L1.358,10.864 L0,10.864 L0,1.302 C0.382666667,1.20866667 0.809666667,1.14566667 1.281,1.113 C1.75233333,1.08033333 2.184,1.064 2.576,1.064 Z M2.688,2.254 C2.10933333,2.254 1.666,2.268 1.358,2.296 L1.358,6.104 L2.38,6.104 C2.84666667,6.104 3.26666667,6.07366667 3.64,6.013 C4.01333333,5.95233333 4.32833333,5.84966667 4.585,5.705 C4.84166667,5.56033333 5.04,5.362 5.18,5.11 C5.32,4.858 5.39,4.536 5.39,4.144 C5.39,3.77066667 5.31766667,3.46266667 5.173,3.22 C5.02833333,2.97733333 4.83233333,2.78366667 4.585,2.639 C4.33766667,2.49433333 4.05066667,2.394 3.724,2.338 C3.39733333,2.282 3.052,2.254 2.688,2.254 Z\"\r\n id=\"path-1\"\r\n ></path>\r\n <path\r\n d=\"M14.56,7.224 C14.56,7.80266667 14.476,8.32533333 14.308,8.792 C14.14,9.25866667 13.9043333,9.66 13.601,9.996 C13.2976667,10.332 12.936,10.591 12.516,10.773 C12.096,10.955 11.6386667,11.046 11.144,11.046 C10.6493333,11.046 10.192,10.955 9.772,10.773 C9.352,10.591 8.99033333,10.332 8.687,9.996 C8.38366667,9.66 8.148,9.25866667 7.98,8.792 C7.812,8.32533333 7.728,7.80266667 7.728,7.224 C7.728,6.65466667 7.812,6.13433333 7.98,5.663 C8.148,5.19166667 8.38366667,4.788 8.687,4.452 C8.99033333,4.116 9.352,3.857 9.772,3.675 C10.192,3.493 10.6493333,3.402 11.144,3.402 C11.6386667,3.402 12.096,3.493 12.516,3.675 C12.936,3.857 13.2976667,4.116 13.601,4.452 C13.9043333,4.788 14.14,5.19166667 14.308,5.663 C14.476,6.13433333 14.56,6.65466667 14.56,7.224 Z M13.202,7.224 C13.202,6.40266667 13.0176667,5.75166667 12.649,5.271 C12.2803333,4.79033333 11.7786667,4.55 11.144,4.55 C10.5093333,4.55 10.0076667,4.79033333 9.639,5.271 C9.27033333,5.75166667 9.086,6.40266667 9.086,7.224 C9.086,8.04533333 9.27033333,8.69633333 9.639,9.177 C10.0076667,9.65766667 10.5093333,9.898 11.144,9.898 C11.7786667,9.898 12.2803333,9.65766667 12.649,9.177 C13.0176667,8.69633333 13.202,8.04533333 13.202,7.224 Z\"\r\n id=\"path-2\"\r\n ></path>\r\n <path\r\n d=\"M22.162,10.864 C21.9006667,10.192 21.623,9.42433333 21.329,8.561 C21.035,7.69766667 20.7666667,6.79933333 20.524,5.866 C20.2813333,6.79933333 20.0153333,7.69766667 19.726,8.561 C19.4366667,9.42433333 19.1613333,10.192 18.9,10.864 L17.766,10.864 C17.3366667,9.90266667 16.9166667,8.806 16.506,7.574 C16.0953333,6.342 15.708,5.012 15.344,3.584 L16.744,3.584 C16.8373333,4.02266667 16.9493333,4.49866667 17.08,5.012 C17.2106667,5.52533333 17.3483333,6.03866667 17.493,6.552 C17.6376667,7.06533333 17.7893333,7.56 17.948,8.036 C18.1066667,8.512 18.256,8.92733333 18.396,9.282 C18.5546667,8.84333333 18.711,8.379 18.865,7.889 C19.019,7.399 19.166,6.90433333 19.306,6.405 C19.446,5.90566667 19.579,5.41566667 19.705,4.935 C19.831,4.45433333 19.9406667,4.004 20.034,3.584 L21.112,3.584 C21.196,4.004 21.2986667,4.45433333 21.42,4.935 C21.5413333,5.41566667 21.672,5.90566667 21.812,6.405 C21.952,6.90433333 22.099,7.399 22.253,7.889 C22.407,8.379 22.5633333,8.84333333 22.722,9.282 C22.862,8.92733333 23.009,8.512 23.163,8.036 C23.317,7.56 23.4686667,7.06533333 23.618,6.552 C23.7673333,6.03866667 23.9073333,5.52533333 24.038,5.012 C24.1686667,4.49866667 24.2806667,4.02266667 24.374,3.584 L25.718,3.584 C25.354,5.012 24.9666667,6.342 24.556,7.574 C24.1453333,8.806 23.7253333,9.90266667 23.296,10.864 L22.162,10.864 Z\"\r\n id=\"path-3\"\r\n ></path>\r\n <path\r\n d=\"M26.684,7.238 C26.684,6.594 26.7773333,6.03166667 26.964,5.551 C27.1506667,5.07033333 27.398,4.67133333 27.706,4.354 C28.014,4.03666667 28.3686667,3.79866667 28.77,3.64 C29.1713333,3.48133333 29.582,3.402 30.002,3.402 C30.982,3.402 31.7333333,3.70766667 32.256,4.319 C32.7786667,4.93033333 33.04,5.86133333 33.04,7.112 C33.04,7.168 33.04,7.24033333 33.04,7.329 C33.04,7.41766667 33.0353333,7.49933333 33.026,7.574 L28.042,7.574 C28.098,8.33 28.3173333,8.904 28.7,9.296 C29.0826667,9.688 29.68,9.884 30.492,9.884 C30.9493333,9.884 31.3343333,9.84433333 31.647,9.765 C31.9596667,9.68566667 32.1953333,9.60866667 32.354,9.534 L32.536,10.626 C32.3773333,10.71 32.0996667,10.7986667 31.703,10.892 C31.3063333,10.9853333 30.856,11.032 30.352,11.032 C29.7173333,11.032 29.169,10.9363333 28.707,10.745 C28.245,10.5536667 27.8646667,10.29 27.566,9.954 C27.2673333,9.618 27.0456667,9.219 26.901,8.757 C26.7563333,8.295 26.684,7.78866667 26.684,7.238 Z M31.682,6.524 C31.6913333,5.936 31.5443333,5.453 31.241,5.075 C30.9376667,4.697 30.52,4.508 29.988,4.508 C29.6893333,4.508 29.4256667,4.56633333 29.197,4.683 C28.9683333,4.79966667 28.7746667,4.95133333 28.616,5.138 C28.4573333,5.32466667 28.3336667,5.53933333 28.245,5.782 C28.1563333,6.02466667 28.098,6.272 28.07,6.524 L31.682,6.524 Z\"\r\n id=\"path-4\"\r\n ></path>\r\n <path\r\n d=\"M37.604,3.43 C37.716,3.43 37.8443333,3.437 37.989,3.451 C38.1336667,3.465 38.276,3.48366667 38.416,3.507 C38.556,3.53033333 38.6843333,3.55366667 38.801,3.577 C38.9176667,3.60033333 39.004,3.62133333 39.06,3.64 L38.836,4.774 C38.7333333,4.73666667 38.563,4.69233333 38.325,4.641 C38.087,4.58966667 37.7813333,4.564 37.408,4.564 C37.1653333,4.564 36.925,4.58966667 36.687,4.641 C36.449,4.69233333 36.2926667,4.72733333 36.218,4.746 L36.218,10.864 L34.916,10.864 L34.916,3.892 C35.224,3.78 35.6066667,3.675 36.064,3.577 C36.5213333,3.479 37.0346667,3.43 37.604,3.43 Z\"\r\n id=\"path-5\"\r\n ></path>\r\n <path\r\n d=\"M39.914,7.238 C39.914,6.594 40.0073333,6.03166667 40.194,5.551 C40.3806667,5.07033333 40.628,4.67133333 40.936,4.354 C41.244,4.03666667 41.5986667,3.79866667 42,3.64 C42.4013333,3.48133333 42.812,3.402 43.232,3.402 C44.212,3.402 44.9633333,3.70766667 45.486,4.319 C46.0086667,4.93033333 46.27,5.86133333 46.27,7.112 C46.27,7.168 46.27,7.24033333 46.27,7.329 C46.27,7.41766667 46.2653333,7.49933333 46.256,7.574 L41.272,7.574 C41.328,8.33 41.5473333,8.904 41.93,9.296 C42.3126667,9.688 42.91,9.884 43.722,9.884 C44.1793333,9.884 44.5643333,9.84433333 44.877,9.765 C45.1896667,9.68566667 45.4253333,9.60866667 45.584,9.534 L45.766,10.626 C45.6073333,10.71 45.3296667,10.7986667 44.933,10.892 C44.5363333,10.9853333 44.086,11.032 43.582,11.032 C42.9473333,11.032 42.399,10.9363333 41.937,10.745 C41.475,10.5536667 41.0946667,10.29 40.796,9.954 C40.4973333,9.618 40.2756667,9.219 40.131,8.757 C39.9863333,8.295 39.914,7.78866667 39.914,7.238 Z M44.912,6.524 C44.9213333,5.936 44.7743333,5.453 44.471,5.075 C44.1676667,4.697 43.75,4.508 43.218,4.508 C42.9193333,4.508 42.6556667,4.56633333 42.427,4.683 C42.1983333,4.79966667 42.0046667,4.95133333 41.846,5.138 C41.6873333,5.32466667 41.5636667,5.53933333 41.475,5.782 C41.3863333,6.02466667 41.328,6.272 41.3,6.524 L44.912,6.524 Z\"\r\n id=\"path-6\"\r\n ></path>\r\n <path\r\n d=\"M52.85,5.124 C52.6913333,4.99333333 52.4626667,4.86733333 52.164,4.746 C51.8653333,4.62466667 51.5386667,4.564 51.184,4.564 C50.8106667,4.564 50.491,4.63166667 50.225,4.767 C49.959,4.90233333 49.742,5.089 49.574,5.327 C49.406,5.565 49.2846667,5.84733333 49.21,6.174 C49.1353333,6.50066667 49.098,6.85066667 49.098,7.224 C49.098,8.07333333 49.308,8.729 49.728,9.191 C50.148,9.653 50.708,9.884 51.408,9.884 C51.7626667,9.884 52.059,9.86766667 52.297,9.835 C52.535,9.80233333 52.7193333,9.76733333 52.85,9.73 L52.85,5.124 Z M52.85,0.224 L54.152,0 L54.152,10.654 C53.8533333,10.738 53.4706667,10.822 53.004,10.906 C52.5373333,10.99 52.0006667,11.032 51.394,11.032 C50.834,11.032 50.33,10.9433333 49.882,10.766 C49.434,10.5886667 49.0513333,10.3366667 48.734,10.01 C48.4166667,9.68333333 48.1716667,9.28433333 47.999,8.813 C47.8263333,8.34166667 47.74,7.812 47.74,7.224 C47.74,6.664 47.8123333,6.15066667 47.957,5.684 C48.1016667,5.21733333 48.314,4.816 48.594,4.48 C48.874,4.144 49.217,3.88266667 49.623,3.696 C50.029,3.50933333 50.4933333,3.416 51.016,3.416 C51.436,3.416 51.807,3.472 52.129,3.584 C52.451,3.696 52.6913333,3.80333333 52.85,3.906 L52.85,0.224 Z\"\r\n id=\"path-7\"\r\n ></path>\r\n <path\r\n d=\"M60.928,3.906 C61.0866667,3.80333333 61.327,3.696 61.649,3.584 C61.971,3.472 62.342,3.416 62.762,3.416 C63.2846667,3.416 63.749,3.50933333 64.155,3.696 C64.561,3.88266667 64.904,4.144 65.184,4.48 C65.464,4.816 65.6763333,5.21733333 65.821,5.684 C65.9656667,6.15066667 66.038,6.664 66.038,7.224 C66.038,7.812 65.9516667,8.34166667 65.779,8.813 C65.6063333,9.28433333 65.3613333,9.68333333 65.044,10.01 C64.7266667,10.3366667 64.344,10.5886667 63.896,10.766 C63.448,10.9433333 62.944,11.032 62.384,11.032 C61.7773333,11.032 61.2406667,10.99 60.774,10.906 C60.3073333,10.822 59.9246667,10.738 59.626,10.654 L59.626,0.224 L60.928,0 L60.928,3.906 Z M60.928,9.73 C61.0586667,9.76733333 61.243,9.80233333 61.481,9.835 C61.719,9.86766667 62.0153333,9.884 62.37,9.884 C63.07,9.884 63.63,9.653 64.05,9.191 C64.47,8.729 64.68,8.07333333 64.68,7.224 C64.68,6.85066667 64.6426667,6.50066667 64.568,6.174 C64.4933333,5.84733333 64.372,5.565 64.204,5.327 C64.036,5.089 63.819,4.90233333 63.553,4.767 C63.287,4.63166667 62.9673333,4.564 62.594,4.564 C62.2393333,4.564 61.9126667,4.62466667 61.614,4.746 C61.3153333,4.86733333 61.0866667,4.99333333 60.928,5.124 L60.928,9.73 Z\"\r\n id=\"path-8\"\r\n ></path>\r\n <path\r\n d=\"M66.836,12.222 C66.9386667,12.2686667 67.0716667,12.313 67.235,12.355 C67.3983333,12.397 67.5593333,12.418 67.718,12.418 C68.2313333,12.418 68.6326667,12.3036667 68.922,12.075 C69.2113333,11.8463333 69.4726667,11.4753333 69.706,10.962 C69.118,9.842 68.5696667,8.65433333 68.061,7.399 C67.5523333,6.14366667 67.13,4.872 66.794,3.584 L68.194,3.584 C68.2966667,4.004 68.4203333,4.45666667 68.565,4.942 C68.7096667,5.42733333 68.8706667,5.92666667 69.048,6.44 C69.2253333,6.95333333 69.4166667,7.46666667 69.622,7.98 C69.8273333,8.49333333 70.042,8.988 70.266,9.464 C70.6206667,8.484 70.9286667,7.51333333 71.19,6.552 C71.4513333,5.59066667 71.6986667,4.60133333 71.932,3.584 L73.276,3.584 C72.94,4.956 72.5666667,6.27433333 72.156,7.539 C71.7453333,8.80366667 71.302,9.98666667 70.826,11.088 C70.6393333,11.508 70.4456667,11.8696667 70.245,12.173 C70.0443333,12.4763333 69.8226667,12.726 69.58,12.922 C69.3373333,13.118 69.0643333,13.2626667 68.761,13.356 C68.4576667,13.4493333 68.1146667,13.496 67.732,13.496 C67.6293333,13.496 67.522,13.489 67.41,13.475 C67.298,13.461 67.1883333,13.4423333 67.081,13.419 C66.9736667,13.3956667 66.8756667,13.37 66.787,13.342 C66.6983333,13.314 66.6353333,13.2906667 66.598,13.272 L66.836,12.222 Z\"\r\n id=\"path-9\"\r\n ></path>\r\n </defs>\r\n <g\r\n id=\"Page-1\"\r\n stroke=\"none\"\r\n stroke-width=\"1\"\r\n fill=\"none\"\r\n fill-rule=\"evenodd\"\r\n >\r\n <g\r\n id=\"Group-Copy-2\"\r\n transform=\"translate(0.338000, 0.500000)\"\r\n >\r\n <g\r\n id=\"Powered-by\"\r\n transform=\"translate(0.000000, 45.636000)\"\r\n fill-rule=\"nonzero\"\r\n opacity=\"0.900000036\"\r\n >\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-1\"></use>\r\n <use xlink:href=\"#path-1\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-2\"></use>\r\n <use xlink:href=\"#path-2\"></use>\r\n </g>\r\n <g\r\n id=\"Path\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-3\"></use>\r\n <use xlink:href=\"#path-3\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-4\"></use>\r\n <use xlink:href=\"#path-4\"></use>\r\n </g>\r\n <g\r\n id=\"Path\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-5\"></use>\r\n <use xlink:href=\"#path-5\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-6\"></use>\r\n <use xlink:href=\"#path-6\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-7\"></use>\r\n <use xlink:href=\"#path-7\"></use>\r\n </g>\r\n <g id=\"Shape\">\r\n <use\r\n fill=\"#FFFFFF\"\r\n xlink:href=\"#path-8\"\r\n ></use>\r\n <use\r\n fill=\"#6E6E6E\"\r\n xlink:href=\"#path-8\"\r\n ></use>\r\n </g>\r\n <g id=\"Path\">\r\n <use\r\n fill=\"#FFFFFF\"\r\n xlink:href=\"#path-9\"\r\n ></use>\r\n <use\r\n fill=\"#6E6E6E\"\r\n xlink:href=\"#path-9\"\r\n ></use>\r\n </g>\r\n </g>\r\n <image\r\n id=\"Bitmap\"\r\n x=\"77.662\"\r\n y=\"0\"\r\n width=\"151.111111\"\r\n height=\"68\"\r\n xlink:href=\"data:image/png;base64,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\"\r\n ></image>\r\n </g>\r\n </g>\r\n </svg>\r\n</ng-template>\r\n", styles: [""], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
436
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
437
|
-
type: Component,
|
|
438
|
-
args: [{ selector: 'anna-cognito-lib-powered-by-logo-template', standalone: true, imports: [NgTemplateOutlet], template: "<ng-container [ngTemplateOutlet]=\"poweredBySurewavesLogo\"> </ng-container>\r\n\r\n<ng-template #poweredBySurewavesLogo>\r\n <svg\r\n width=\"230px\"\r\n height=\"69px\"\r\n viewBox=\"0 0 230 69\"\r\n version=\"1.1\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\r\n >\r\n <defs>\r\n <path\r\n d=\"M2.576,1.064 C3.93866667,1.064 4.98633333,1.323 5.719,1.841 C6.45166667,2.359 6.818,3.13133333 6.818,4.158 C6.818,4.718 6.71766667,5.19633333 6.517,5.593 C6.31633333,5.98966667 6.027,6.31166667 5.649,6.559 C5.271,6.80633333 4.81133333,6.986 4.27,7.098 C3.72866667,7.21 3.11733333,7.266 2.436,7.266 L1.358,7.266 L1.358,10.864 L0,10.864 L0,1.302 C0.382666667,1.20866667 0.809666667,1.14566667 1.281,1.113 C1.75233333,1.08033333 2.184,1.064 2.576,1.064 Z M2.688,2.254 C2.10933333,2.254 1.666,2.268 1.358,2.296 L1.358,6.104 L2.38,6.104 C2.84666667,6.104 3.26666667,6.07366667 3.64,6.013 C4.01333333,5.95233333 4.32833333,5.84966667 4.585,5.705 C4.84166667,5.56033333 5.04,5.362 5.18,5.11 C5.32,4.858 5.39,4.536 5.39,4.144 C5.39,3.77066667 5.31766667,3.46266667 5.173,3.22 C5.02833333,2.97733333 4.83233333,2.78366667 4.585,2.639 C4.33766667,2.49433333 4.05066667,2.394 3.724,2.338 C3.39733333,2.282 3.052,2.254 2.688,2.254 Z\"\r\n id=\"path-1\"\r\n ></path>\r\n <path\r\n d=\"M14.56,7.224 C14.56,7.80266667 14.476,8.32533333 14.308,8.792 C14.14,9.25866667 13.9043333,9.66 13.601,9.996 C13.2976667,10.332 12.936,10.591 12.516,10.773 C12.096,10.955 11.6386667,11.046 11.144,11.046 C10.6493333,11.046 10.192,10.955 9.772,10.773 C9.352,10.591 8.99033333,10.332 8.687,9.996 C8.38366667,9.66 8.148,9.25866667 7.98,8.792 C7.812,8.32533333 7.728,7.80266667 7.728,7.224 C7.728,6.65466667 7.812,6.13433333 7.98,5.663 C8.148,5.19166667 8.38366667,4.788 8.687,4.452 C8.99033333,4.116 9.352,3.857 9.772,3.675 C10.192,3.493 10.6493333,3.402 11.144,3.402 C11.6386667,3.402 12.096,3.493 12.516,3.675 C12.936,3.857 13.2976667,4.116 13.601,4.452 C13.9043333,4.788 14.14,5.19166667 14.308,5.663 C14.476,6.13433333 14.56,6.65466667 14.56,7.224 Z M13.202,7.224 C13.202,6.40266667 13.0176667,5.75166667 12.649,5.271 C12.2803333,4.79033333 11.7786667,4.55 11.144,4.55 C10.5093333,4.55 10.0076667,4.79033333 9.639,5.271 C9.27033333,5.75166667 9.086,6.40266667 9.086,7.224 C9.086,8.04533333 9.27033333,8.69633333 9.639,9.177 C10.0076667,9.65766667 10.5093333,9.898 11.144,9.898 C11.7786667,9.898 12.2803333,9.65766667 12.649,9.177 C13.0176667,8.69633333 13.202,8.04533333 13.202,7.224 Z\"\r\n id=\"path-2\"\r\n ></path>\r\n <path\r\n d=\"M22.162,10.864 C21.9006667,10.192 21.623,9.42433333 21.329,8.561 C21.035,7.69766667 20.7666667,6.79933333 20.524,5.866 C20.2813333,6.79933333 20.0153333,7.69766667 19.726,8.561 C19.4366667,9.42433333 19.1613333,10.192 18.9,10.864 L17.766,10.864 C17.3366667,9.90266667 16.9166667,8.806 16.506,7.574 C16.0953333,6.342 15.708,5.012 15.344,3.584 L16.744,3.584 C16.8373333,4.02266667 16.9493333,4.49866667 17.08,5.012 C17.2106667,5.52533333 17.3483333,6.03866667 17.493,6.552 C17.6376667,7.06533333 17.7893333,7.56 17.948,8.036 C18.1066667,8.512 18.256,8.92733333 18.396,9.282 C18.5546667,8.84333333 18.711,8.379 18.865,7.889 C19.019,7.399 19.166,6.90433333 19.306,6.405 C19.446,5.90566667 19.579,5.41566667 19.705,4.935 C19.831,4.45433333 19.9406667,4.004 20.034,3.584 L21.112,3.584 C21.196,4.004 21.2986667,4.45433333 21.42,4.935 C21.5413333,5.41566667 21.672,5.90566667 21.812,6.405 C21.952,6.90433333 22.099,7.399 22.253,7.889 C22.407,8.379 22.5633333,8.84333333 22.722,9.282 C22.862,8.92733333 23.009,8.512 23.163,8.036 C23.317,7.56 23.4686667,7.06533333 23.618,6.552 C23.7673333,6.03866667 23.9073333,5.52533333 24.038,5.012 C24.1686667,4.49866667 24.2806667,4.02266667 24.374,3.584 L25.718,3.584 C25.354,5.012 24.9666667,6.342 24.556,7.574 C24.1453333,8.806 23.7253333,9.90266667 23.296,10.864 L22.162,10.864 Z\"\r\n id=\"path-3\"\r\n ></path>\r\n <path\r\n d=\"M26.684,7.238 C26.684,6.594 26.7773333,6.03166667 26.964,5.551 C27.1506667,5.07033333 27.398,4.67133333 27.706,4.354 C28.014,4.03666667 28.3686667,3.79866667 28.77,3.64 C29.1713333,3.48133333 29.582,3.402 30.002,3.402 C30.982,3.402 31.7333333,3.70766667 32.256,4.319 C32.7786667,4.93033333 33.04,5.86133333 33.04,7.112 C33.04,7.168 33.04,7.24033333 33.04,7.329 C33.04,7.41766667 33.0353333,7.49933333 33.026,7.574 L28.042,7.574 C28.098,8.33 28.3173333,8.904 28.7,9.296 C29.0826667,9.688 29.68,9.884 30.492,9.884 C30.9493333,9.884 31.3343333,9.84433333 31.647,9.765 C31.9596667,9.68566667 32.1953333,9.60866667 32.354,9.534 L32.536,10.626 C32.3773333,10.71 32.0996667,10.7986667 31.703,10.892 C31.3063333,10.9853333 30.856,11.032 30.352,11.032 C29.7173333,11.032 29.169,10.9363333 28.707,10.745 C28.245,10.5536667 27.8646667,10.29 27.566,9.954 C27.2673333,9.618 27.0456667,9.219 26.901,8.757 C26.7563333,8.295 26.684,7.78866667 26.684,7.238 Z M31.682,6.524 C31.6913333,5.936 31.5443333,5.453 31.241,5.075 C30.9376667,4.697 30.52,4.508 29.988,4.508 C29.6893333,4.508 29.4256667,4.56633333 29.197,4.683 C28.9683333,4.79966667 28.7746667,4.95133333 28.616,5.138 C28.4573333,5.32466667 28.3336667,5.53933333 28.245,5.782 C28.1563333,6.02466667 28.098,6.272 28.07,6.524 L31.682,6.524 Z\"\r\n id=\"path-4\"\r\n ></path>\r\n <path\r\n d=\"M37.604,3.43 C37.716,3.43 37.8443333,3.437 37.989,3.451 C38.1336667,3.465 38.276,3.48366667 38.416,3.507 C38.556,3.53033333 38.6843333,3.55366667 38.801,3.577 C38.9176667,3.60033333 39.004,3.62133333 39.06,3.64 L38.836,4.774 C38.7333333,4.73666667 38.563,4.69233333 38.325,4.641 C38.087,4.58966667 37.7813333,4.564 37.408,4.564 C37.1653333,4.564 36.925,4.58966667 36.687,4.641 C36.449,4.69233333 36.2926667,4.72733333 36.218,4.746 L36.218,10.864 L34.916,10.864 L34.916,3.892 C35.224,3.78 35.6066667,3.675 36.064,3.577 C36.5213333,3.479 37.0346667,3.43 37.604,3.43 Z\"\r\n id=\"path-5\"\r\n ></path>\r\n <path\r\n d=\"M39.914,7.238 C39.914,6.594 40.0073333,6.03166667 40.194,5.551 C40.3806667,5.07033333 40.628,4.67133333 40.936,4.354 C41.244,4.03666667 41.5986667,3.79866667 42,3.64 C42.4013333,3.48133333 42.812,3.402 43.232,3.402 C44.212,3.402 44.9633333,3.70766667 45.486,4.319 C46.0086667,4.93033333 46.27,5.86133333 46.27,7.112 C46.27,7.168 46.27,7.24033333 46.27,7.329 C46.27,7.41766667 46.2653333,7.49933333 46.256,7.574 L41.272,7.574 C41.328,8.33 41.5473333,8.904 41.93,9.296 C42.3126667,9.688 42.91,9.884 43.722,9.884 C44.1793333,9.884 44.5643333,9.84433333 44.877,9.765 C45.1896667,9.68566667 45.4253333,9.60866667 45.584,9.534 L45.766,10.626 C45.6073333,10.71 45.3296667,10.7986667 44.933,10.892 C44.5363333,10.9853333 44.086,11.032 43.582,11.032 C42.9473333,11.032 42.399,10.9363333 41.937,10.745 C41.475,10.5536667 41.0946667,10.29 40.796,9.954 C40.4973333,9.618 40.2756667,9.219 40.131,8.757 C39.9863333,8.295 39.914,7.78866667 39.914,7.238 Z M44.912,6.524 C44.9213333,5.936 44.7743333,5.453 44.471,5.075 C44.1676667,4.697 43.75,4.508 43.218,4.508 C42.9193333,4.508 42.6556667,4.56633333 42.427,4.683 C42.1983333,4.79966667 42.0046667,4.95133333 41.846,5.138 C41.6873333,5.32466667 41.5636667,5.53933333 41.475,5.782 C41.3863333,6.02466667 41.328,6.272 41.3,6.524 L44.912,6.524 Z\"\r\n id=\"path-6\"\r\n ></path>\r\n <path\r\n d=\"M52.85,5.124 C52.6913333,4.99333333 52.4626667,4.86733333 52.164,4.746 C51.8653333,4.62466667 51.5386667,4.564 51.184,4.564 C50.8106667,4.564 50.491,4.63166667 50.225,4.767 C49.959,4.90233333 49.742,5.089 49.574,5.327 C49.406,5.565 49.2846667,5.84733333 49.21,6.174 C49.1353333,6.50066667 49.098,6.85066667 49.098,7.224 C49.098,8.07333333 49.308,8.729 49.728,9.191 C50.148,9.653 50.708,9.884 51.408,9.884 C51.7626667,9.884 52.059,9.86766667 52.297,9.835 C52.535,9.80233333 52.7193333,9.76733333 52.85,9.73 L52.85,5.124 Z M52.85,0.224 L54.152,0 L54.152,10.654 C53.8533333,10.738 53.4706667,10.822 53.004,10.906 C52.5373333,10.99 52.0006667,11.032 51.394,11.032 C50.834,11.032 50.33,10.9433333 49.882,10.766 C49.434,10.5886667 49.0513333,10.3366667 48.734,10.01 C48.4166667,9.68333333 48.1716667,9.28433333 47.999,8.813 C47.8263333,8.34166667 47.74,7.812 47.74,7.224 C47.74,6.664 47.8123333,6.15066667 47.957,5.684 C48.1016667,5.21733333 48.314,4.816 48.594,4.48 C48.874,4.144 49.217,3.88266667 49.623,3.696 C50.029,3.50933333 50.4933333,3.416 51.016,3.416 C51.436,3.416 51.807,3.472 52.129,3.584 C52.451,3.696 52.6913333,3.80333333 52.85,3.906 L52.85,0.224 Z\"\r\n id=\"path-7\"\r\n ></path>\r\n <path\r\n d=\"M60.928,3.906 C61.0866667,3.80333333 61.327,3.696 61.649,3.584 C61.971,3.472 62.342,3.416 62.762,3.416 C63.2846667,3.416 63.749,3.50933333 64.155,3.696 C64.561,3.88266667 64.904,4.144 65.184,4.48 C65.464,4.816 65.6763333,5.21733333 65.821,5.684 C65.9656667,6.15066667 66.038,6.664 66.038,7.224 C66.038,7.812 65.9516667,8.34166667 65.779,8.813 C65.6063333,9.28433333 65.3613333,9.68333333 65.044,10.01 C64.7266667,10.3366667 64.344,10.5886667 63.896,10.766 C63.448,10.9433333 62.944,11.032 62.384,11.032 C61.7773333,11.032 61.2406667,10.99 60.774,10.906 C60.3073333,10.822 59.9246667,10.738 59.626,10.654 L59.626,0.224 L60.928,0 L60.928,3.906 Z M60.928,9.73 C61.0586667,9.76733333 61.243,9.80233333 61.481,9.835 C61.719,9.86766667 62.0153333,9.884 62.37,9.884 C63.07,9.884 63.63,9.653 64.05,9.191 C64.47,8.729 64.68,8.07333333 64.68,7.224 C64.68,6.85066667 64.6426667,6.50066667 64.568,6.174 C64.4933333,5.84733333 64.372,5.565 64.204,5.327 C64.036,5.089 63.819,4.90233333 63.553,4.767 C63.287,4.63166667 62.9673333,4.564 62.594,4.564 C62.2393333,4.564 61.9126667,4.62466667 61.614,4.746 C61.3153333,4.86733333 61.0866667,4.99333333 60.928,5.124 L60.928,9.73 Z\"\r\n id=\"path-8\"\r\n ></path>\r\n <path\r\n d=\"M66.836,12.222 C66.9386667,12.2686667 67.0716667,12.313 67.235,12.355 C67.3983333,12.397 67.5593333,12.418 67.718,12.418 C68.2313333,12.418 68.6326667,12.3036667 68.922,12.075 C69.2113333,11.8463333 69.4726667,11.4753333 69.706,10.962 C69.118,9.842 68.5696667,8.65433333 68.061,7.399 C67.5523333,6.14366667 67.13,4.872 66.794,3.584 L68.194,3.584 C68.2966667,4.004 68.4203333,4.45666667 68.565,4.942 C68.7096667,5.42733333 68.8706667,5.92666667 69.048,6.44 C69.2253333,6.95333333 69.4166667,7.46666667 69.622,7.98 C69.8273333,8.49333333 70.042,8.988 70.266,9.464 C70.6206667,8.484 70.9286667,7.51333333 71.19,6.552 C71.4513333,5.59066667 71.6986667,4.60133333 71.932,3.584 L73.276,3.584 C72.94,4.956 72.5666667,6.27433333 72.156,7.539 C71.7453333,8.80366667 71.302,9.98666667 70.826,11.088 C70.6393333,11.508 70.4456667,11.8696667 70.245,12.173 C70.0443333,12.4763333 69.8226667,12.726 69.58,12.922 C69.3373333,13.118 69.0643333,13.2626667 68.761,13.356 C68.4576667,13.4493333 68.1146667,13.496 67.732,13.496 C67.6293333,13.496 67.522,13.489 67.41,13.475 C67.298,13.461 67.1883333,13.4423333 67.081,13.419 C66.9736667,13.3956667 66.8756667,13.37 66.787,13.342 C66.6983333,13.314 66.6353333,13.2906667 66.598,13.272 L66.836,12.222 Z\"\r\n id=\"path-9\"\r\n ></path>\r\n </defs>\r\n <g\r\n id=\"Page-1\"\r\n stroke=\"none\"\r\n stroke-width=\"1\"\r\n fill=\"none\"\r\n fill-rule=\"evenodd\"\r\n >\r\n <g\r\n id=\"Group-Copy-2\"\r\n transform=\"translate(0.338000, 0.500000)\"\r\n >\r\n <g\r\n id=\"Powered-by\"\r\n transform=\"translate(0.000000, 45.636000)\"\r\n fill-rule=\"nonzero\"\r\n opacity=\"0.900000036\"\r\n >\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-1\"></use>\r\n <use xlink:href=\"#path-1\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-2\"></use>\r\n <use xlink:href=\"#path-2\"></use>\r\n </g>\r\n <g\r\n id=\"Path\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-3\"></use>\r\n <use xlink:href=\"#path-3\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-4\"></use>\r\n <use xlink:href=\"#path-4\"></use>\r\n </g>\r\n <g\r\n id=\"Path\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-5\"></use>\r\n <use xlink:href=\"#path-5\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-6\"></use>\r\n <use xlink:href=\"#path-6\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-7\"></use>\r\n <use xlink:href=\"#path-7\"></use>\r\n </g>\r\n <g id=\"Shape\">\r\n <use\r\n fill=\"#FFFFFF\"\r\n xlink:href=\"#path-8\"\r\n ></use>\r\n <use\r\n fill=\"#6E6E6E\"\r\n xlink:href=\"#path-8\"\r\n ></use>\r\n </g>\r\n <g id=\"Path\">\r\n <use\r\n fill=\"#FFFFFF\"\r\n xlink:href=\"#path-9\"\r\n ></use>\r\n <use\r\n fill=\"#6E6E6E\"\r\n xlink:href=\"#path-9\"\r\n ></use>\r\n </g>\r\n </g>\r\n <image\r\n id=\"Bitmap\"\r\n x=\"77.662\"\r\n y=\"0\"\r\n width=\"151.111111\"\r\n height=\"68\"\r\n xlink:href=\"data:image/png;base64,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\"\r\n ></image>\r\n </g>\r\n </g>\r\n </svg>\r\n</ng-template>\r\n" }]
|
|
430
|
+
class PoweredByLogoTemplateComponent {
|
|
431
|
+
constructor() { }
|
|
432
|
+
ngOnInit() { }
|
|
433
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PoweredByLogoTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
434
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PoweredByLogoTemplateComponent, isStandalone: true, selector: "anna-cognito-lib-powered-by-logo-template", ngImport: i0, template: "<ng-container [ngTemplateOutlet]=\"poweredBySurewavesLogo\"> </ng-container>\r\n\r\n<ng-template #poweredBySurewavesLogo>\r\n <svg\r\n width=\"230px\"\r\n height=\"69px\"\r\n viewBox=\"0 0 230 69\"\r\n version=\"1.1\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\r\n >\r\n <defs>\r\n <path\r\n d=\"M2.576,1.064 C3.93866667,1.064 4.98633333,1.323 5.719,1.841 C6.45166667,2.359 6.818,3.13133333 6.818,4.158 C6.818,4.718 6.71766667,5.19633333 6.517,5.593 C6.31633333,5.98966667 6.027,6.31166667 5.649,6.559 C5.271,6.80633333 4.81133333,6.986 4.27,7.098 C3.72866667,7.21 3.11733333,7.266 2.436,7.266 L1.358,7.266 L1.358,10.864 L0,10.864 L0,1.302 C0.382666667,1.20866667 0.809666667,1.14566667 1.281,1.113 C1.75233333,1.08033333 2.184,1.064 2.576,1.064 Z M2.688,2.254 C2.10933333,2.254 1.666,2.268 1.358,2.296 L1.358,6.104 L2.38,6.104 C2.84666667,6.104 3.26666667,6.07366667 3.64,6.013 C4.01333333,5.95233333 4.32833333,5.84966667 4.585,5.705 C4.84166667,5.56033333 5.04,5.362 5.18,5.11 C5.32,4.858 5.39,4.536 5.39,4.144 C5.39,3.77066667 5.31766667,3.46266667 5.173,3.22 C5.02833333,2.97733333 4.83233333,2.78366667 4.585,2.639 C4.33766667,2.49433333 4.05066667,2.394 3.724,2.338 C3.39733333,2.282 3.052,2.254 2.688,2.254 Z\"\r\n id=\"path-1\"\r\n ></path>\r\n <path\r\n d=\"M14.56,7.224 C14.56,7.80266667 14.476,8.32533333 14.308,8.792 C14.14,9.25866667 13.9043333,9.66 13.601,9.996 C13.2976667,10.332 12.936,10.591 12.516,10.773 C12.096,10.955 11.6386667,11.046 11.144,11.046 C10.6493333,11.046 10.192,10.955 9.772,10.773 C9.352,10.591 8.99033333,10.332 8.687,9.996 C8.38366667,9.66 8.148,9.25866667 7.98,8.792 C7.812,8.32533333 7.728,7.80266667 7.728,7.224 C7.728,6.65466667 7.812,6.13433333 7.98,5.663 C8.148,5.19166667 8.38366667,4.788 8.687,4.452 C8.99033333,4.116 9.352,3.857 9.772,3.675 C10.192,3.493 10.6493333,3.402 11.144,3.402 C11.6386667,3.402 12.096,3.493 12.516,3.675 C12.936,3.857 13.2976667,4.116 13.601,4.452 C13.9043333,4.788 14.14,5.19166667 14.308,5.663 C14.476,6.13433333 14.56,6.65466667 14.56,7.224 Z M13.202,7.224 C13.202,6.40266667 13.0176667,5.75166667 12.649,5.271 C12.2803333,4.79033333 11.7786667,4.55 11.144,4.55 C10.5093333,4.55 10.0076667,4.79033333 9.639,5.271 C9.27033333,5.75166667 9.086,6.40266667 9.086,7.224 C9.086,8.04533333 9.27033333,8.69633333 9.639,9.177 C10.0076667,9.65766667 10.5093333,9.898 11.144,9.898 C11.7786667,9.898 12.2803333,9.65766667 12.649,9.177 C13.0176667,8.69633333 13.202,8.04533333 13.202,7.224 Z\"\r\n id=\"path-2\"\r\n ></path>\r\n <path\r\n d=\"M22.162,10.864 C21.9006667,10.192 21.623,9.42433333 21.329,8.561 C21.035,7.69766667 20.7666667,6.79933333 20.524,5.866 C20.2813333,6.79933333 20.0153333,7.69766667 19.726,8.561 C19.4366667,9.42433333 19.1613333,10.192 18.9,10.864 L17.766,10.864 C17.3366667,9.90266667 16.9166667,8.806 16.506,7.574 C16.0953333,6.342 15.708,5.012 15.344,3.584 L16.744,3.584 C16.8373333,4.02266667 16.9493333,4.49866667 17.08,5.012 C17.2106667,5.52533333 17.3483333,6.03866667 17.493,6.552 C17.6376667,7.06533333 17.7893333,7.56 17.948,8.036 C18.1066667,8.512 18.256,8.92733333 18.396,9.282 C18.5546667,8.84333333 18.711,8.379 18.865,7.889 C19.019,7.399 19.166,6.90433333 19.306,6.405 C19.446,5.90566667 19.579,5.41566667 19.705,4.935 C19.831,4.45433333 19.9406667,4.004 20.034,3.584 L21.112,3.584 C21.196,4.004 21.2986667,4.45433333 21.42,4.935 C21.5413333,5.41566667 21.672,5.90566667 21.812,6.405 C21.952,6.90433333 22.099,7.399 22.253,7.889 C22.407,8.379 22.5633333,8.84333333 22.722,9.282 C22.862,8.92733333 23.009,8.512 23.163,8.036 C23.317,7.56 23.4686667,7.06533333 23.618,6.552 C23.7673333,6.03866667 23.9073333,5.52533333 24.038,5.012 C24.1686667,4.49866667 24.2806667,4.02266667 24.374,3.584 L25.718,3.584 C25.354,5.012 24.9666667,6.342 24.556,7.574 C24.1453333,8.806 23.7253333,9.90266667 23.296,10.864 L22.162,10.864 Z\"\r\n id=\"path-3\"\r\n ></path>\r\n <path\r\n d=\"M26.684,7.238 C26.684,6.594 26.7773333,6.03166667 26.964,5.551 C27.1506667,5.07033333 27.398,4.67133333 27.706,4.354 C28.014,4.03666667 28.3686667,3.79866667 28.77,3.64 C29.1713333,3.48133333 29.582,3.402 30.002,3.402 C30.982,3.402 31.7333333,3.70766667 32.256,4.319 C32.7786667,4.93033333 33.04,5.86133333 33.04,7.112 C33.04,7.168 33.04,7.24033333 33.04,7.329 C33.04,7.41766667 33.0353333,7.49933333 33.026,7.574 L28.042,7.574 C28.098,8.33 28.3173333,8.904 28.7,9.296 C29.0826667,9.688 29.68,9.884 30.492,9.884 C30.9493333,9.884 31.3343333,9.84433333 31.647,9.765 C31.9596667,9.68566667 32.1953333,9.60866667 32.354,9.534 L32.536,10.626 C32.3773333,10.71 32.0996667,10.7986667 31.703,10.892 C31.3063333,10.9853333 30.856,11.032 30.352,11.032 C29.7173333,11.032 29.169,10.9363333 28.707,10.745 C28.245,10.5536667 27.8646667,10.29 27.566,9.954 C27.2673333,9.618 27.0456667,9.219 26.901,8.757 C26.7563333,8.295 26.684,7.78866667 26.684,7.238 Z M31.682,6.524 C31.6913333,5.936 31.5443333,5.453 31.241,5.075 C30.9376667,4.697 30.52,4.508 29.988,4.508 C29.6893333,4.508 29.4256667,4.56633333 29.197,4.683 C28.9683333,4.79966667 28.7746667,4.95133333 28.616,5.138 C28.4573333,5.32466667 28.3336667,5.53933333 28.245,5.782 C28.1563333,6.02466667 28.098,6.272 28.07,6.524 L31.682,6.524 Z\"\r\n id=\"path-4\"\r\n ></path>\r\n <path\r\n d=\"M37.604,3.43 C37.716,3.43 37.8443333,3.437 37.989,3.451 C38.1336667,3.465 38.276,3.48366667 38.416,3.507 C38.556,3.53033333 38.6843333,3.55366667 38.801,3.577 C38.9176667,3.60033333 39.004,3.62133333 39.06,3.64 L38.836,4.774 C38.7333333,4.73666667 38.563,4.69233333 38.325,4.641 C38.087,4.58966667 37.7813333,4.564 37.408,4.564 C37.1653333,4.564 36.925,4.58966667 36.687,4.641 C36.449,4.69233333 36.2926667,4.72733333 36.218,4.746 L36.218,10.864 L34.916,10.864 L34.916,3.892 C35.224,3.78 35.6066667,3.675 36.064,3.577 C36.5213333,3.479 37.0346667,3.43 37.604,3.43 Z\"\r\n id=\"path-5\"\r\n ></path>\r\n <path\r\n d=\"M39.914,7.238 C39.914,6.594 40.0073333,6.03166667 40.194,5.551 C40.3806667,5.07033333 40.628,4.67133333 40.936,4.354 C41.244,4.03666667 41.5986667,3.79866667 42,3.64 C42.4013333,3.48133333 42.812,3.402 43.232,3.402 C44.212,3.402 44.9633333,3.70766667 45.486,4.319 C46.0086667,4.93033333 46.27,5.86133333 46.27,7.112 C46.27,7.168 46.27,7.24033333 46.27,7.329 C46.27,7.41766667 46.2653333,7.49933333 46.256,7.574 L41.272,7.574 C41.328,8.33 41.5473333,8.904 41.93,9.296 C42.3126667,9.688 42.91,9.884 43.722,9.884 C44.1793333,9.884 44.5643333,9.84433333 44.877,9.765 C45.1896667,9.68566667 45.4253333,9.60866667 45.584,9.534 L45.766,10.626 C45.6073333,10.71 45.3296667,10.7986667 44.933,10.892 C44.5363333,10.9853333 44.086,11.032 43.582,11.032 C42.9473333,11.032 42.399,10.9363333 41.937,10.745 C41.475,10.5536667 41.0946667,10.29 40.796,9.954 C40.4973333,9.618 40.2756667,9.219 40.131,8.757 C39.9863333,8.295 39.914,7.78866667 39.914,7.238 Z M44.912,6.524 C44.9213333,5.936 44.7743333,5.453 44.471,5.075 C44.1676667,4.697 43.75,4.508 43.218,4.508 C42.9193333,4.508 42.6556667,4.56633333 42.427,4.683 C42.1983333,4.79966667 42.0046667,4.95133333 41.846,5.138 C41.6873333,5.32466667 41.5636667,5.53933333 41.475,5.782 C41.3863333,6.02466667 41.328,6.272 41.3,6.524 L44.912,6.524 Z\"\r\n id=\"path-6\"\r\n ></path>\r\n <path\r\n d=\"M52.85,5.124 C52.6913333,4.99333333 52.4626667,4.86733333 52.164,4.746 C51.8653333,4.62466667 51.5386667,4.564 51.184,4.564 C50.8106667,4.564 50.491,4.63166667 50.225,4.767 C49.959,4.90233333 49.742,5.089 49.574,5.327 C49.406,5.565 49.2846667,5.84733333 49.21,6.174 C49.1353333,6.50066667 49.098,6.85066667 49.098,7.224 C49.098,8.07333333 49.308,8.729 49.728,9.191 C50.148,9.653 50.708,9.884 51.408,9.884 C51.7626667,9.884 52.059,9.86766667 52.297,9.835 C52.535,9.80233333 52.7193333,9.76733333 52.85,9.73 L52.85,5.124 Z M52.85,0.224 L54.152,0 L54.152,10.654 C53.8533333,10.738 53.4706667,10.822 53.004,10.906 C52.5373333,10.99 52.0006667,11.032 51.394,11.032 C50.834,11.032 50.33,10.9433333 49.882,10.766 C49.434,10.5886667 49.0513333,10.3366667 48.734,10.01 C48.4166667,9.68333333 48.1716667,9.28433333 47.999,8.813 C47.8263333,8.34166667 47.74,7.812 47.74,7.224 C47.74,6.664 47.8123333,6.15066667 47.957,5.684 C48.1016667,5.21733333 48.314,4.816 48.594,4.48 C48.874,4.144 49.217,3.88266667 49.623,3.696 C50.029,3.50933333 50.4933333,3.416 51.016,3.416 C51.436,3.416 51.807,3.472 52.129,3.584 C52.451,3.696 52.6913333,3.80333333 52.85,3.906 L52.85,0.224 Z\"\r\n id=\"path-7\"\r\n ></path>\r\n <path\r\n d=\"M60.928,3.906 C61.0866667,3.80333333 61.327,3.696 61.649,3.584 C61.971,3.472 62.342,3.416 62.762,3.416 C63.2846667,3.416 63.749,3.50933333 64.155,3.696 C64.561,3.88266667 64.904,4.144 65.184,4.48 C65.464,4.816 65.6763333,5.21733333 65.821,5.684 C65.9656667,6.15066667 66.038,6.664 66.038,7.224 C66.038,7.812 65.9516667,8.34166667 65.779,8.813 C65.6063333,9.28433333 65.3613333,9.68333333 65.044,10.01 C64.7266667,10.3366667 64.344,10.5886667 63.896,10.766 C63.448,10.9433333 62.944,11.032 62.384,11.032 C61.7773333,11.032 61.2406667,10.99 60.774,10.906 C60.3073333,10.822 59.9246667,10.738 59.626,10.654 L59.626,0.224 L60.928,0 L60.928,3.906 Z M60.928,9.73 C61.0586667,9.76733333 61.243,9.80233333 61.481,9.835 C61.719,9.86766667 62.0153333,9.884 62.37,9.884 C63.07,9.884 63.63,9.653 64.05,9.191 C64.47,8.729 64.68,8.07333333 64.68,7.224 C64.68,6.85066667 64.6426667,6.50066667 64.568,6.174 C64.4933333,5.84733333 64.372,5.565 64.204,5.327 C64.036,5.089 63.819,4.90233333 63.553,4.767 C63.287,4.63166667 62.9673333,4.564 62.594,4.564 C62.2393333,4.564 61.9126667,4.62466667 61.614,4.746 C61.3153333,4.86733333 61.0866667,4.99333333 60.928,5.124 L60.928,9.73 Z\"\r\n id=\"path-8\"\r\n ></path>\r\n <path\r\n d=\"M66.836,12.222 C66.9386667,12.2686667 67.0716667,12.313 67.235,12.355 C67.3983333,12.397 67.5593333,12.418 67.718,12.418 C68.2313333,12.418 68.6326667,12.3036667 68.922,12.075 C69.2113333,11.8463333 69.4726667,11.4753333 69.706,10.962 C69.118,9.842 68.5696667,8.65433333 68.061,7.399 C67.5523333,6.14366667 67.13,4.872 66.794,3.584 L68.194,3.584 C68.2966667,4.004 68.4203333,4.45666667 68.565,4.942 C68.7096667,5.42733333 68.8706667,5.92666667 69.048,6.44 C69.2253333,6.95333333 69.4166667,7.46666667 69.622,7.98 C69.8273333,8.49333333 70.042,8.988 70.266,9.464 C70.6206667,8.484 70.9286667,7.51333333 71.19,6.552 C71.4513333,5.59066667 71.6986667,4.60133333 71.932,3.584 L73.276,3.584 C72.94,4.956 72.5666667,6.27433333 72.156,7.539 C71.7453333,8.80366667 71.302,9.98666667 70.826,11.088 C70.6393333,11.508 70.4456667,11.8696667 70.245,12.173 C70.0443333,12.4763333 69.8226667,12.726 69.58,12.922 C69.3373333,13.118 69.0643333,13.2626667 68.761,13.356 C68.4576667,13.4493333 68.1146667,13.496 67.732,13.496 C67.6293333,13.496 67.522,13.489 67.41,13.475 C67.298,13.461 67.1883333,13.4423333 67.081,13.419 C66.9736667,13.3956667 66.8756667,13.37 66.787,13.342 C66.6983333,13.314 66.6353333,13.2906667 66.598,13.272 L66.836,12.222 Z\"\r\n id=\"path-9\"\r\n ></path>\r\n </defs>\r\n <g\r\n id=\"Page-1\"\r\n stroke=\"none\"\r\n stroke-width=\"1\"\r\n fill=\"none\"\r\n fill-rule=\"evenodd\"\r\n >\r\n <g\r\n id=\"Group-Copy-2\"\r\n transform=\"translate(0.338000, 0.500000)\"\r\n >\r\n <g\r\n id=\"Powered-by\"\r\n transform=\"translate(0.000000, 45.636000)\"\r\n fill-rule=\"nonzero\"\r\n opacity=\"0.900000036\"\r\n >\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-1\"></use>\r\n <use xlink:href=\"#path-1\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-2\"></use>\r\n <use xlink:href=\"#path-2\"></use>\r\n </g>\r\n <g\r\n id=\"Path\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-3\"></use>\r\n <use xlink:href=\"#path-3\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-4\"></use>\r\n <use xlink:href=\"#path-4\"></use>\r\n </g>\r\n <g\r\n id=\"Path\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-5\"></use>\r\n <use xlink:href=\"#path-5\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-6\"></use>\r\n <use xlink:href=\"#path-6\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-7\"></use>\r\n <use xlink:href=\"#path-7\"></use>\r\n </g>\r\n <g id=\"Shape\">\r\n <use\r\n fill=\"#FFFFFF\"\r\n xlink:href=\"#path-8\"\r\n ></use>\r\n <use\r\n fill=\"#6E6E6E\"\r\n xlink:href=\"#path-8\"\r\n ></use>\r\n </g>\r\n <g id=\"Path\">\r\n <use\r\n fill=\"#FFFFFF\"\r\n xlink:href=\"#path-9\"\r\n ></use>\r\n <use\r\n fill=\"#6E6E6E\"\r\n xlink:href=\"#path-9\"\r\n ></use>\r\n </g>\r\n </g>\r\n <image\r\n id=\"Bitmap\"\r\n x=\"77.662\"\r\n y=\"0\"\r\n width=\"151.111111\"\r\n height=\"68\"\r\n xlink:href=\"data:image/png;base64,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\"\r\n ></image>\r\n </g>\r\n </g>\r\n </svg>\r\n</ng-template>\r\n", styles: [""], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
435
|
+
}
|
|
436
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PoweredByLogoTemplateComponent, decorators: [{
|
|
437
|
+
type: Component,
|
|
438
|
+
args: [{ selector: 'anna-cognito-lib-powered-by-logo-template', standalone: true, imports: [NgTemplateOutlet], template: "<ng-container [ngTemplateOutlet]=\"poweredBySurewavesLogo\"> </ng-container>\r\n\r\n<ng-template #poweredBySurewavesLogo>\r\n <svg\r\n width=\"230px\"\r\n height=\"69px\"\r\n viewBox=\"0 0 230 69\"\r\n version=\"1.1\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\r\n >\r\n <defs>\r\n <path\r\n d=\"M2.576,1.064 C3.93866667,1.064 4.98633333,1.323 5.719,1.841 C6.45166667,2.359 6.818,3.13133333 6.818,4.158 C6.818,4.718 6.71766667,5.19633333 6.517,5.593 C6.31633333,5.98966667 6.027,6.31166667 5.649,6.559 C5.271,6.80633333 4.81133333,6.986 4.27,7.098 C3.72866667,7.21 3.11733333,7.266 2.436,7.266 L1.358,7.266 L1.358,10.864 L0,10.864 L0,1.302 C0.382666667,1.20866667 0.809666667,1.14566667 1.281,1.113 C1.75233333,1.08033333 2.184,1.064 2.576,1.064 Z M2.688,2.254 C2.10933333,2.254 1.666,2.268 1.358,2.296 L1.358,6.104 L2.38,6.104 C2.84666667,6.104 3.26666667,6.07366667 3.64,6.013 C4.01333333,5.95233333 4.32833333,5.84966667 4.585,5.705 C4.84166667,5.56033333 5.04,5.362 5.18,5.11 C5.32,4.858 5.39,4.536 5.39,4.144 C5.39,3.77066667 5.31766667,3.46266667 5.173,3.22 C5.02833333,2.97733333 4.83233333,2.78366667 4.585,2.639 C4.33766667,2.49433333 4.05066667,2.394 3.724,2.338 C3.39733333,2.282 3.052,2.254 2.688,2.254 Z\"\r\n id=\"path-1\"\r\n ></path>\r\n <path\r\n d=\"M14.56,7.224 C14.56,7.80266667 14.476,8.32533333 14.308,8.792 C14.14,9.25866667 13.9043333,9.66 13.601,9.996 C13.2976667,10.332 12.936,10.591 12.516,10.773 C12.096,10.955 11.6386667,11.046 11.144,11.046 C10.6493333,11.046 10.192,10.955 9.772,10.773 C9.352,10.591 8.99033333,10.332 8.687,9.996 C8.38366667,9.66 8.148,9.25866667 7.98,8.792 C7.812,8.32533333 7.728,7.80266667 7.728,7.224 C7.728,6.65466667 7.812,6.13433333 7.98,5.663 C8.148,5.19166667 8.38366667,4.788 8.687,4.452 C8.99033333,4.116 9.352,3.857 9.772,3.675 C10.192,3.493 10.6493333,3.402 11.144,3.402 C11.6386667,3.402 12.096,3.493 12.516,3.675 C12.936,3.857 13.2976667,4.116 13.601,4.452 C13.9043333,4.788 14.14,5.19166667 14.308,5.663 C14.476,6.13433333 14.56,6.65466667 14.56,7.224 Z M13.202,7.224 C13.202,6.40266667 13.0176667,5.75166667 12.649,5.271 C12.2803333,4.79033333 11.7786667,4.55 11.144,4.55 C10.5093333,4.55 10.0076667,4.79033333 9.639,5.271 C9.27033333,5.75166667 9.086,6.40266667 9.086,7.224 C9.086,8.04533333 9.27033333,8.69633333 9.639,9.177 C10.0076667,9.65766667 10.5093333,9.898 11.144,9.898 C11.7786667,9.898 12.2803333,9.65766667 12.649,9.177 C13.0176667,8.69633333 13.202,8.04533333 13.202,7.224 Z\"\r\n id=\"path-2\"\r\n ></path>\r\n <path\r\n d=\"M22.162,10.864 C21.9006667,10.192 21.623,9.42433333 21.329,8.561 C21.035,7.69766667 20.7666667,6.79933333 20.524,5.866 C20.2813333,6.79933333 20.0153333,7.69766667 19.726,8.561 C19.4366667,9.42433333 19.1613333,10.192 18.9,10.864 L17.766,10.864 C17.3366667,9.90266667 16.9166667,8.806 16.506,7.574 C16.0953333,6.342 15.708,5.012 15.344,3.584 L16.744,3.584 C16.8373333,4.02266667 16.9493333,4.49866667 17.08,5.012 C17.2106667,5.52533333 17.3483333,6.03866667 17.493,6.552 C17.6376667,7.06533333 17.7893333,7.56 17.948,8.036 C18.1066667,8.512 18.256,8.92733333 18.396,9.282 C18.5546667,8.84333333 18.711,8.379 18.865,7.889 C19.019,7.399 19.166,6.90433333 19.306,6.405 C19.446,5.90566667 19.579,5.41566667 19.705,4.935 C19.831,4.45433333 19.9406667,4.004 20.034,3.584 L21.112,3.584 C21.196,4.004 21.2986667,4.45433333 21.42,4.935 C21.5413333,5.41566667 21.672,5.90566667 21.812,6.405 C21.952,6.90433333 22.099,7.399 22.253,7.889 C22.407,8.379 22.5633333,8.84333333 22.722,9.282 C22.862,8.92733333 23.009,8.512 23.163,8.036 C23.317,7.56 23.4686667,7.06533333 23.618,6.552 C23.7673333,6.03866667 23.9073333,5.52533333 24.038,5.012 C24.1686667,4.49866667 24.2806667,4.02266667 24.374,3.584 L25.718,3.584 C25.354,5.012 24.9666667,6.342 24.556,7.574 C24.1453333,8.806 23.7253333,9.90266667 23.296,10.864 L22.162,10.864 Z\"\r\n id=\"path-3\"\r\n ></path>\r\n <path\r\n d=\"M26.684,7.238 C26.684,6.594 26.7773333,6.03166667 26.964,5.551 C27.1506667,5.07033333 27.398,4.67133333 27.706,4.354 C28.014,4.03666667 28.3686667,3.79866667 28.77,3.64 C29.1713333,3.48133333 29.582,3.402 30.002,3.402 C30.982,3.402 31.7333333,3.70766667 32.256,4.319 C32.7786667,4.93033333 33.04,5.86133333 33.04,7.112 C33.04,7.168 33.04,7.24033333 33.04,7.329 C33.04,7.41766667 33.0353333,7.49933333 33.026,7.574 L28.042,7.574 C28.098,8.33 28.3173333,8.904 28.7,9.296 C29.0826667,9.688 29.68,9.884 30.492,9.884 C30.9493333,9.884 31.3343333,9.84433333 31.647,9.765 C31.9596667,9.68566667 32.1953333,9.60866667 32.354,9.534 L32.536,10.626 C32.3773333,10.71 32.0996667,10.7986667 31.703,10.892 C31.3063333,10.9853333 30.856,11.032 30.352,11.032 C29.7173333,11.032 29.169,10.9363333 28.707,10.745 C28.245,10.5536667 27.8646667,10.29 27.566,9.954 C27.2673333,9.618 27.0456667,9.219 26.901,8.757 C26.7563333,8.295 26.684,7.78866667 26.684,7.238 Z M31.682,6.524 C31.6913333,5.936 31.5443333,5.453 31.241,5.075 C30.9376667,4.697 30.52,4.508 29.988,4.508 C29.6893333,4.508 29.4256667,4.56633333 29.197,4.683 C28.9683333,4.79966667 28.7746667,4.95133333 28.616,5.138 C28.4573333,5.32466667 28.3336667,5.53933333 28.245,5.782 C28.1563333,6.02466667 28.098,6.272 28.07,6.524 L31.682,6.524 Z\"\r\n id=\"path-4\"\r\n ></path>\r\n <path\r\n d=\"M37.604,3.43 C37.716,3.43 37.8443333,3.437 37.989,3.451 C38.1336667,3.465 38.276,3.48366667 38.416,3.507 C38.556,3.53033333 38.6843333,3.55366667 38.801,3.577 C38.9176667,3.60033333 39.004,3.62133333 39.06,3.64 L38.836,4.774 C38.7333333,4.73666667 38.563,4.69233333 38.325,4.641 C38.087,4.58966667 37.7813333,4.564 37.408,4.564 C37.1653333,4.564 36.925,4.58966667 36.687,4.641 C36.449,4.69233333 36.2926667,4.72733333 36.218,4.746 L36.218,10.864 L34.916,10.864 L34.916,3.892 C35.224,3.78 35.6066667,3.675 36.064,3.577 C36.5213333,3.479 37.0346667,3.43 37.604,3.43 Z\"\r\n id=\"path-5\"\r\n ></path>\r\n <path\r\n d=\"M39.914,7.238 C39.914,6.594 40.0073333,6.03166667 40.194,5.551 C40.3806667,5.07033333 40.628,4.67133333 40.936,4.354 C41.244,4.03666667 41.5986667,3.79866667 42,3.64 C42.4013333,3.48133333 42.812,3.402 43.232,3.402 C44.212,3.402 44.9633333,3.70766667 45.486,4.319 C46.0086667,4.93033333 46.27,5.86133333 46.27,7.112 C46.27,7.168 46.27,7.24033333 46.27,7.329 C46.27,7.41766667 46.2653333,7.49933333 46.256,7.574 L41.272,7.574 C41.328,8.33 41.5473333,8.904 41.93,9.296 C42.3126667,9.688 42.91,9.884 43.722,9.884 C44.1793333,9.884 44.5643333,9.84433333 44.877,9.765 C45.1896667,9.68566667 45.4253333,9.60866667 45.584,9.534 L45.766,10.626 C45.6073333,10.71 45.3296667,10.7986667 44.933,10.892 C44.5363333,10.9853333 44.086,11.032 43.582,11.032 C42.9473333,11.032 42.399,10.9363333 41.937,10.745 C41.475,10.5536667 41.0946667,10.29 40.796,9.954 C40.4973333,9.618 40.2756667,9.219 40.131,8.757 C39.9863333,8.295 39.914,7.78866667 39.914,7.238 Z M44.912,6.524 C44.9213333,5.936 44.7743333,5.453 44.471,5.075 C44.1676667,4.697 43.75,4.508 43.218,4.508 C42.9193333,4.508 42.6556667,4.56633333 42.427,4.683 C42.1983333,4.79966667 42.0046667,4.95133333 41.846,5.138 C41.6873333,5.32466667 41.5636667,5.53933333 41.475,5.782 C41.3863333,6.02466667 41.328,6.272 41.3,6.524 L44.912,6.524 Z\"\r\n id=\"path-6\"\r\n ></path>\r\n <path\r\n d=\"M52.85,5.124 C52.6913333,4.99333333 52.4626667,4.86733333 52.164,4.746 C51.8653333,4.62466667 51.5386667,4.564 51.184,4.564 C50.8106667,4.564 50.491,4.63166667 50.225,4.767 C49.959,4.90233333 49.742,5.089 49.574,5.327 C49.406,5.565 49.2846667,5.84733333 49.21,6.174 C49.1353333,6.50066667 49.098,6.85066667 49.098,7.224 C49.098,8.07333333 49.308,8.729 49.728,9.191 C50.148,9.653 50.708,9.884 51.408,9.884 C51.7626667,9.884 52.059,9.86766667 52.297,9.835 C52.535,9.80233333 52.7193333,9.76733333 52.85,9.73 L52.85,5.124 Z M52.85,0.224 L54.152,0 L54.152,10.654 C53.8533333,10.738 53.4706667,10.822 53.004,10.906 C52.5373333,10.99 52.0006667,11.032 51.394,11.032 C50.834,11.032 50.33,10.9433333 49.882,10.766 C49.434,10.5886667 49.0513333,10.3366667 48.734,10.01 C48.4166667,9.68333333 48.1716667,9.28433333 47.999,8.813 C47.8263333,8.34166667 47.74,7.812 47.74,7.224 C47.74,6.664 47.8123333,6.15066667 47.957,5.684 C48.1016667,5.21733333 48.314,4.816 48.594,4.48 C48.874,4.144 49.217,3.88266667 49.623,3.696 C50.029,3.50933333 50.4933333,3.416 51.016,3.416 C51.436,3.416 51.807,3.472 52.129,3.584 C52.451,3.696 52.6913333,3.80333333 52.85,3.906 L52.85,0.224 Z\"\r\n id=\"path-7\"\r\n ></path>\r\n <path\r\n d=\"M60.928,3.906 C61.0866667,3.80333333 61.327,3.696 61.649,3.584 C61.971,3.472 62.342,3.416 62.762,3.416 C63.2846667,3.416 63.749,3.50933333 64.155,3.696 C64.561,3.88266667 64.904,4.144 65.184,4.48 C65.464,4.816 65.6763333,5.21733333 65.821,5.684 C65.9656667,6.15066667 66.038,6.664 66.038,7.224 C66.038,7.812 65.9516667,8.34166667 65.779,8.813 C65.6063333,9.28433333 65.3613333,9.68333333 65.044,10.01 C64.7266667,10.3366667 64.344,10.5886667 63.896,10.766 C63.448,10.9433333 62.944,11.032 62.384,11.032 C61.7773333,11.032 61.2406667,10.99 60.774,10.906 C60.3073333,10.822 59.9246667,10.738 59.626,10.654 L59.626,0.224 L60.928,0 L60.928,3.906 Z M60.928,9.73 C61.0586667,9.76733333 61.243,9.80233333 61.481,9.835 C61.719,9.86766667 62.0153333,9.884 62.37,9.884 C63.07,9.884 63.63,9.653 64.05,9.191 C64.47,8.729 64.68,8.07333333 64.68,7.224 C64.68,6.85066667 64.6426667,6.50066667 64.568,6.174 C64.4933333,5.84733333 64.372,5.565 64.204,5.327 C64.036,5.089 63.819,4.90233333 63.553,4.767 C63.287,4.63166667 62.9673333,4.564 62.594,4.564 C62.2393333,4.564 61.9126667,4.62466667 61.614,4.746 C61.3153333,4.86733333 61.0866667,4.99333333 60.928,5.124 L60.928,9.73 Z\"\r\n id=\"path-8\"\r\n ></path>\r\n <path\r\n d=\"M66.836,12.222 C66.9386667,12.2686667 67.0716667,12.313 67.235,12.355 C67.3983333,12.397 67.5593333,12.418 67.718,12.418 C68.2313333,12.418 68.6326667,12.3036667 68.922,12.075 C69.2113333,11.8463333 69.4726667,11.4753333 69.706,10.962 C69.118,9.842 68.5696667,8.65433333 68.061,7.399 C67.5523333,6.14366667 67.13,4.872 66.794,3.584 L68.194,3.584 C68.2966667,4.004 68.4203333,4.45666667 68.565,4.942 C68.7096667,5.42733333 68.8706667,5.92666667 69.048,6.44 C69.2253333,6.95333333 69.4166667,7.46666667 69.622,7.98 C69.8273333,8.49333333 70.042,8.988 70.266,9.464 C70.6206667,8.484 70.9286667,7.51333333 71.19,6.552 C71.4513333,5.59066667 71.6986667,4.60133333 71.932,3.584 L73.276,3.584 C72.94,4.956 72.5666667,6.27433333 72.156,7.539 C71.7453333,8.80366667 71.302,9.98666667 70.826,11.088 C70.6393333,11.508 70.4456667,11.8696667 70.245,12.173 C70.0443333,12.4763333 69.8226667,12.726 69.58,12.922 C69.3373333,13.118 69.0643333,13.2626667 68.761,13.356 C68.4576667,13.4493333 68.1146667,13.496 67.732,13.496 C67.6293333,13.496 67.522,13.489 67.41,13.475 C67.298,13.461 67.1883333,13.4423333 67.081,13.419 C66.9736667,13.3956667 66.8756667,13.37 66.787,13.342 C66.6983333,13.314 66.6353333,13.2906667 66.598,13.272 L66.836,12.222 Z\"\r\n id=\"path-9\"\r\n ></path>\r\n </defs>\r\n <g\r\n id=\"Page-1\"\r\n stroke=\"none\"\r\n stroke-width=\"1\"\r\n fill=\"none\"\r\n fill-rule=\"evenodd\"\r\n >\r\n <g\r\n id=\"Group-Copy-2\"\r\n transform=\"translate(0.338000, 0.500000)\"\r\n >\r\n <g\r\n id=\"Powered-by\"\r\n transform=\"translate(0.000000, 45.636000)\"\r\n fill-rule=\"nonzero\"\r\n opacity=\"0.900000036\"\r\n >\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-1\"></use>\r\n <use xlink:href=\"#path-1\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-2\"></use>\r\n <use xlink:href=\"#path-2\"></use>\r\n </g>\r\n <g\r\n id=\"Path\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-3\"></use>\r\n <use xlink:href=\"#path-3\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-4\"></use>\r\n <use xlink:href=\"#path-4\"></use>\r\n </g>\r\n <g\r\n id=\"Path\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-5\"></use>\r\n <use xlink:href=\"#path-5\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-6\"></use>\r\n <use xlink:href=\"#path-6\"></use>\r\n </g>\r\n <g\r\n id=\"Shape\"\r\n fill=\"#6E6E6E\"\r\n >\r\n <use xlink:href=\"#path-7\"></use>\r\n <use xlink:href=\"#path-7\"></use>\r\n </g>\r\n <g id=\"Shape\">\r\n <use\r\n fill=\"#FFFFFF\"\r\n xlink:href=\"#path-8\"\r\n ></use>\r\n <use\r\n fill=\"#6E6E6E\"\r\n xlink:href=\"#path-8\"\r\n ></use>\r\n </g>\r\n <g id=\"Path\">\r\n <use\r\n fill=\"#FFFFFF\"\r\n xlink:href=\"#path-9\"\r\n ></use>\r\n <use\r\n fill=\"#6E6E6E\"\r\n xlink:href=\"#path-9\"\r\n ></use>\r\n </g>\r\n </g>\r\n <image\r\n id=\"Bitmap\"\r\n x=\"77.662\"\r\n y=\"0\"\r\n width=\"151.111111\"\r\n height=\"68\"\r\n xlink:href=\"data:image/png;base64,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\"\r\n ></image>\r\n </g>\r\n </g>\r\n </svg>\r\n</ng-template>\r\n" }]
|
|
439
439
|
}], ctorParameters: function () { return []; } });
|
|
440
440
|
|
|
441
|
-
class SsoLoginComponent {
|
|
442
|
-
constructor(authService, consumingProjectConfigService) {
|
|
443
|
-
this.authService = authService;
|
|
444
|
-
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
445
|
-
}
|
|
446
|
-
ngOnInit() {
|
|
447
|
-
this.constants = LoginConstant;
|
|
448
|
-
}
|
|
449
|
-
signInWithSSO() {
|
|
450
|
-
this.authService.signInWithSSO();
|
|
451
|
-
}
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
456
|
-
type: Component,
|
|
457
|
-
args: [{ selector: 'anna-cognito-lib-sso-login', standalone: true, imports: [
|
|
458
|
-
NgIf,
|
|
459
|
-
NgOptimizedImage,
|
|
460
|
-
PoweredByLogoTemplateComponent,
|
|
461
|
-
SurewavesYearLogoComponent,
|
|
462
|
-
VersionAndTermPolicyComponent,
|
|
463
|
-
], template: "<div class=\"main\">\r\n <section *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img\r\n [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n width=\"145\"\r\n height=\"50\"\r\n alt=\"Anna Logo\"\r\n priority\r\n />\r\n </header>\r\n <article>\r\n <p class=\"sub-title\">Login</p>\r\n <p>Sign in using your corporate ID (SSO)</p>\r\n <button\r\n class=\"login-btn\"\r\n (click)=\"signInWithSSO()\"\r\n >\r\n Login with Duo\r\n </button>\r\n <div class=\"dashed-line\"></div>\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}\n"] }]
|
|
464
|
-
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: undefined, decorators: [{
|
|
465
|
-
type: Inject,
|
|
466
|
-
args: [CONFIG_SERVICE_TOKEN]
|
|
441
|
+
class SsoLoginComponent {
|
|
442
|
+
constructor(authService, consumingProjectConfigService) {
|
|
443
|
+
this.authService = authService;
|
|
444
|
+
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
445
|
+
}
|
|
446
|
+
ngOnInit() {
|
|
447
|
+
this.constants = LoginConstant;
|
|
448
|
+
}
|
|
449
|
+
signInWithSSO() {
|
|
450
|
+
this.authService.signInWithSSO();
|
|
451
|
+
}
|
|
452
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SsoLoginComponent, deps: [{ token: AnnaLibAuthService }, { token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
453
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SsoLoginComponent, isStandalone: true, selector: "anna-cognito-lib-sso-login", ngImport: i0, template: "<div class=\"main\">\r\n <section *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img\r\n [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n width=\"145\"\r\n height=\"50\"\r\n alt=\"Anna Logo\"\r\n priority\r\n />\r\n </header>\r\n <article>\r\n <p class=\"sub-title\">Login</p>\r\n <p>Sign in using your corporate ID (SSO)</p>\r\n <button\r\n class=\"login-btn\"\r\n (click)=\"signInWithSSO()\"\r\n >\r\n Login with Duo\r\n </button>\r\n <div class=\"dashed-line\"></div>\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}\n"], dependencies: [{ kind: "directive", type: 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: "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" }] }); }
|
|
454
|
+
}
|
|
455
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SsoLoginComponent, decorators: [{
|
|
456
|
+
type: Component,
|
|
457
|
+
args: [{ selector: 'anna-cognito-lib-sso-login', standalone: true, imports: [
|
|
458
|
+
NgIf,
|
|
459
|
+
NgOptimizedImage,
|
|
460
|
+
PoweredByLogoTemplateComponent,
|
|
461
|
+
SurewavesYearLogoComponent,
|
|
462
|
+
VersionAndTermPolicyComponent,
|
|
463
|
+
], template: "<div class=\"main\">\r\n <section *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img\r\n [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n width=\"145\"\r\n height=\"50\"\r\n alt=\"Anna Logo\"\r\n priority\r\n />\r\n </header>\r\n <article>\r\n <p class=\"sub-title\">Login</p>\r\n <p>Sign in using your corporate ID (SSO)</p>\r\n <button\r\n class=\"login-btn\"\r\n (click)=\"signInWithSSO()\"\r\n >\r\n Login with Duo\r\n </button>\r\n <div class=\"dashed-line\"></div>\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}\n"] }]
|
|
464
|
+
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: undefined, decorators: [{
|
|
465
|
+
type: Inject,
|
|
466
|
+
args: [CONFIG_SERVICE_TOKEN]
|
|
467
467
|
}] }]; } });
|
|
468
468
|
|
|
469
|
-
class SpinnerButtonDirective {
|
|
470
|
-
constructor(el, renderer) {
|
|
471
|
-
this.el = el;
|
|
472
|
-
this.renderer = renderer;
|
|
473
|
-
this.button = this.el.nativeElement;
|
|
474
|
-
this.child = document.createElement('div');
|
|
475
|
-
}
|
|
476
|
-
ngOnInit() { }
|
|
477
|
-
ngOnChanges(changes) {
|
|
478
|
-
if (changes['spinnerButtonText'] && changes['spinnerButtonText'].currentValue) {
|
|
479
|
-
this.button.innerHTML = this.spinnerButtonText;
|
|
480
|
-
}
|
|
481
|
-
if (changes['loading'] && changes['loading'].currentValue) {
|
|
482
|
-
this.button.innerHTML = '';
|
|
483
|
-
this.button.setAttribute('disabled', 'true');
|
|
484
|
-
this.child.classList.add('spinner-for-button-directive');
|
|
485
|
-
this.renderer.appendChild(this.button, this.child);
|
|
486
|
-
}
|
|
487
|
-
else {
|
|
488
|
-
this.child.classList.remove('spinner-for-button-directive');
|
|
489
|
-
this.button.removeAttribute('disabled');
|
|
490
|
-
this.button.innerHTML = this.spinnerButtonText;
|
|
491
|
-
}
|
|
492
|
-
}
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
497
|
-
type: Directive,
|
|
498
|
-
args: [{
|
|
499
|
-
selector: '[anna-cognito-lib-SpinnerButton]',
|
|
500
|
-
standalone: true,
|
|
501
|
-
}]
|
|
502
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { loading: [{
|
|
503
|
-
type: Input,
|
|
504
|
-
args: ['anna-cognito-lib-SpinnerButton']
|
|
505
|
-
}], spinnerButtonText: [{
|
|
506
|
-
type: Input,
|
|
507
|
-
args: ['spinnerButtonText']
|
|
469
|
+
class SpinnerButtonDirective {
|
|
470
|
+
constructor(el, renderer) {
|
|
471
|
+
this.el = el;
|
|
472
|
+
this.renderer = renderer;
|
|
473
|
+
this.button = this.el.nativeElement;
|
|
474
|
+
this.child = document.createElement('div');
|
|
475
|
+
}
|
|
476
|
+
ngOnInit() { }
|
|
477
|
+
ngOnChanges(changes) {
|
|
478
|
+
if (changes['spinnerButtonText'] && changes['spinnerButtonText'].currentValue) {
|
|
479
|
+
this.button.innerHTML = this.spinnerButtonText;
|
|
480
|
+
}
|
|
481
|
+
if (changes['loading'] && changes['loading'].currentValue) {
|
|
482
|
+
this.button.innerHTML = '';
|
|
483
|
+
this.button.setAttribute('disabled', 'true');
|
|
484
|
+
this.child.classList.add('spinner-for-button-directive');
|
|
485
|
+
this.renderer.appendChild(this.button, this.child);
|
|
486
|
+
}
|
|
487
|
+
else {
|
|
488
|
+
this.child.classList.remove('spinner-for-button-directive');
|
|
489
|
+
this.button.removeAttribute('disabled');
|
|
490
|
+
this.button.innerHTML = this.spinnerButtonText;
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SpinnerButtonDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
494
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SpinnerButtonDirective, isStandalone: true, selector: "[anna-cognito-lib-SpinnerButton]", inputs: { loading: ["anna-cognito-lib-SpinnerButton", "loading"], spinnerButtonText: "spinnerButtonText" }, usesOnChanges: true, ngImport: i0 }); }
|
|
495
|
+
}
|
|
496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SpinnerButtonDirective, decorators: [{
|
|
497
|
+
type: Directive,
|
|
498
|
+
args: [{
|
|
499
|
+
selector: '[anna-cognito-lib-SpinnerButton]',
|
|
500
|
+
standalone: true,
|
|
501
|
+
}]
|
|
502
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { loading: [{
|
|
503
|
+
type: Input,
|
|
504
|
+
args: ['anna-cognito-lib-SpinnerButton']
|
|
505
|
+
}], spinnerButtonText: [{
|
|
506
|
+
type: Input,
|
|
507
|
+
args: ['spinnerButtonText']
|
|
508
508
|
}] } });
|
|
509
509
|
|
|
510
|
-
// Angular import statements
|
|
511
|
-
class AnnaLoginComponent {
|
|
512
|
-
constructor(authService, fb, consumingProjectConfigService, consumingProjectSSOLoginService) {
|
|
513
|
-
this.authService = authService;
|
|
514
|
-
this.fb = fb;
|
|
515
|
-
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
516
|
-
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
517
|
-
}
|
|
518
|
-
ngOnInit() {
|
|
519
|
-
this.authService.consumingProjectAuthService.isLoggingIn = false;
|
|
520
|
-
this.consumingProjectSSOLoginService.loggedInViaSso = false;
|
|
521
|
-
this.constants = LoginConstant;
|
|
522
|
-
this.onIntialiseForm();
|
|
523
|
-
}
|
|
524
|
-
onIntialiseForm() {
|
|
525
|
-
this.loginForm = this.fb.group({
|
|
526
|
-
username: [null],
|
|
527
|
-
password: [null],
|
|
528
|
-
});
|
|
529
|
-
}
|
|
530
|
-
OnLogin() {
|
|
531
|
-
this.authService.consumingProjectAuthService.isLoggingIn = true;
|
|
532
|
-
const username = this.loginForm.controls['username'].value;
|
|
533
|
-
const password = this.loginForm.controls['password'].value;
|
|
534
|
-
this.authService.handleSignIn({ username, password });
|
|
535
|
-
}
|
|
536
|
-
}
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
540
|
-
type: Component,
|
|
541
|
-
args: [{ selector: 'anna-cognito-lib-anna-login', standalone: true, imports: [
|
|
542
|
-
NgIf,
|
|
543
|
-
NgOptimizedImage,
|
|
544
|
-
FormsModule,
|
|
545
|
-
ReactiveFormsModule,
|
|
546
|
-
NgClass,
|
|
547
|
-
RouterLink,
|
|
548
|
-
SpinnerButtonDirective,
|
|
549
|
-
PoweredByLogoTemplateComponent,
|
|
550
|
-
SurewavesYearLogoComponent,
|
|
551
|
-
VersionAndTermPolicyComponent,
|
|
552
|
-
], 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 *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img\r\n [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n width=\"145\"\r\n height=\"50\"\r\n alt=\"Anna 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=\"username\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\"\r\n [placeholder]=\"\r\n consumingProjectSSOLoginService?.isSsoIntegrated\r\n ? constants.enterUserCode\r\n : constants.enterEmail\r\n \"\r\n autocomplete=\"username\"\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 [anna-cognito-lib-SpinnerButton]=\"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:#268bff;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}\n"] }]
|
|
553
|
-
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i2.FormBuilder }, { type: undefined, decorators: [{
|
|
554
|
-
type: Inject,
|
|
555
|
-
args: [CONFIG_SERVICE_TOKEN]
|
|
556
|
-
}] }, { type: undefined, decorators: [{
|
|
557
|
-
type: Inject,
|
|
558
|
-
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
510
|
+
// Angular import statements
|
|
511
|
+
class AnnaLoginComponent {
|
|
512
|
+
constructor(authService, fb, consumingProjectConfigService, consumingProjectSSOLoginService) {
|
|
513
|
+
this.authService = authService;
|
|
514
|
+
this.fb = fb;
|
|
515
|
+
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
516
|
+
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
517
|
+
}
|
|
518
|
+
ngOnInit() {
|
|
519
|
+
this.authService.consumingProjectAuthService.isLoggingIn = false;
|
|
520
|
+
this.consumingProjectSSOLoginService.loggedInViaSso = false;
|
|
521
|
+
this.constants = LoginConstant;
|
|
522
|
+
this.onIntialiseForm();
|
|
523
|
+
}
|
|
524
|
+
onIntialiseForm() {
|
|
525
|
+
this.loginForm = this.fb.group({
|
|
526
|
+
username: [null],
|
|
527
|
+
password: [null],
|
|
528
|
+
});
|
|
529
|
+
}
|
|
530
|
+
OnLogin() {
|
|
531
|
+
this.authService.consumingProjectAuthService.isLoggingIn = true;
|
|
532
|
+
const username = this.loginForm.controls['username'].value;
|
|
533
|
+
const password = this.loginForm.controls['password'].value;
|
|
534
|
+
this.authService.handleSignIn({ username, password });
|
|
535
|
+
}
|
|
536
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLoginComponent, deps: [{ token: AnnaLibAuthService }, { token: i2.FormBuilder }, { token: CONFIG_SERVICE_TOKEN }, { token: SSO_LOGIN_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
537
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AnnaLoginComponent, isStandalone: true, selector: "anna-cognito-lib-anna-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 *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img\r\n [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n width=\"145\"\r\n height=\"50\"\r\n alt=\"Anna 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=\"username\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\"\r\n [placeholder]=\"\r\n consumingProjectSSOLoginService?.isSsoIntegrated\r\n ? constants.enterUserCode\r\n : constants.enterEmail\r\n \"\r\n autocomplete=\"username\"\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 [anna-cognito-lib-SpinnerButton]=\"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:#268bff;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}\n"], dependencies: [{ kind: "directive", type: 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: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: SpinnerButtonDirective, selector: "[anna-cognito-lib-SpinnerButton]", inputs: ["anna-cognito-lib-SpinnerButton", "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" }] }); }
|
|
538
|
+
}
|
|
539
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLoginComponent, decorators: [{
|
|
540
|
+
type: Component,
|
|
541
|
+
args: [{ selector: 'anna-cognito-lib-anna-login', standalone: true, imports: [
|
|
542
|
+
NgIf,
|
|
543
|
+
NgOptimizedImage,
|
|
544
|
+
FormsModule,
|
|
545
|
+
ReactiveFormsModule,
|
|
546
|
+
NgClass,
|
|
547
|
+
RouterLink,
|
|
548
|
+
SpinnerButtonDirective,
|
|
549
|
+
PoweredByLogoTemplateComponent,
|
|
550
|
+
SurewavesYearLogoComponent,
|
|
551
|
+
VersionAndTermPolicyComponent,
|
|
552
|
+
], 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 *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img\r\n [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n width=\"145\"\r\n height=\"50\"\r\n alt=\"Anna 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=\"username\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\"\r\n [placeholder]=\"\r\n consumingProjectSSOLoginService?.isSsoIntegrated\r\n ? constants.enterUserCode\r\n : constants.enterEmail\r\n \"\r\n autocomplete=\"username\"\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 [anna-cognito-lib-SpinnerButton]=\"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:#268bff;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}\n"] }]
|
|
553
|
+
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i2.FormBuilder }, { type: undefined, decorators: [{
|
|
554
|
+
type: Inject,
|
|
555
|
+
args: [CONFIG_SERVICE_TOKEN]
|
|
556
|
+
}] }, { type: undefined, decorators: [{
|
|
557
|
+
type: Inject,
|
|
558
|
+
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
559
559
|
}] }]; } });
|
|
560
560
|
|
|
561
|
-
class CognitoAndSSOLoginContainerComponent {
|
|
562
|
-
constructor(consumingProjectSSOLoginService) {
|
|
563
|
-
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
564
|
-
}
|
|
565
|
-
ngOnInit() { }
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
570
|
-
type: Component,
|
|
571
|
-
args: [{ selector: 'anna-cognito-lib-cognito-and-sso-login-container', standalone: true, imports: [NgIf, AnnaLoginComponent, SsoLoginComponent], template: "<anna-cognito-lib-anna-login *ngIf=\"!consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-anna-login>\r\n<anna-cognito-lib-sso-login *ngIf=\"consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-sso-login>\r\n" }]
|
|
572
|
-
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
573
|
-
type: Inject,
|
|
574
|
-
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
561
|
+
class CognitoAndSSOLoginContainerComponent {
|
|
562
|
+
constructor(consumingProjectSSOLoginService) {
|
|
563
|
+
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
564
|
+
}
|
|
565
|
+
ngOnInit() { }
|
|
566
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CognitoAndSSOLoginContainerComponent, deps: [{ token: SSO_LOGIN_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
567
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CognitoAndSSOLoginContainerComponent, isStandalone: true, selector: "anna-cognito-lib-cognito-and-sso-login-container", ngImport: i0, template: "<anna-cognito-lib-anna-login *ngIf=\"!consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-anna-login>\r\n<anna-cognito-lib-sso-login *ngIf=\"consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-sso-login>\r\n", styles: [""], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: AnnaLoginComponent, selector: "anna-cognito-lib-anna-login" }, { kind: "component", type: SsoLoginComponent, selector: "anna-cognito-lib-sso-login" }] }); }
|
|
568
|
+
}
|
|
569
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CognitoAndSSOLoginContainerComponent, decorators: [{
|
|
570
|
+
type: Component,
|
|
571
|
+
args: [{ selector: 'anna-cognito-lib-cognito-and-sso-login-container', standalone: true, imports: [NgIf, AnnaLoginComponent, SsoLoginComponent], template: "<anna-cognito-lib-anna-login *ngIf=\"!consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-anna-login>\r\n<anna-cognito-lib-sso-login *ngIf=\"consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-sso-login>\r\n" }]
|
|
572
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
573
|
+
type: Inject,
|
|
574
|
+
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
575
575
|
}] }]; } });
|
|
576
576
|
|
|
577
|
-
class AuthenticationData {
|
|
578
|
-
constructor(Username, Password) {
|
|
579
|
-
this.Username = Username;
|
|
580
|
-
this.Password = Password;
|
|
581
|
-
}
|
|
582
|
-
}
|
|
583
|
-
class UserPoolInformation {
|
|
584
|
-
constructor(UserPoolId, ClientId) {
|
|
585
|
-
this.UserPoolId = UserPoolId;
|
|
586
|
-
this.ClientId = ClientId;
|
|
587
|
-
}
|
|
588
|
-
}
|
|
589
|
-
class UsernameInfo {
|
|
590
|
-
constructor(object) {
|
|
591
|
-
this.isUsernameAvailable = object.isUsernameAvailable;
|
|
592
|
-
}
|
|
593
|
-
}
|
|
594
|
-
class UserState {
|
|
595
|
-
constructor(userState) {
|
|
596
|
-
this.userStatus = userState;
|
|
597
|
-
this.isUserWithTempPassword = userState == 'FORCE_CHANGE_PASSWORD';
|
|
598
|
-
}
|
|
577
|
+
class AuthenticationData {
|
|
578
|
+
constructor(Username, Password) {
|
|
579
|
+
this.Username = Username;
|
|
580
|
+
this.Password = Password;
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
class UserPoolInformation {
|
|
584
|
+
constructor(UserPoolId, ClientId) {
|
|
585
|
+
this.UserPoolId = UserPoolId;
|
|
586
|
+
this.ClientId = ClientId;
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
class UsernameInfo {
|
|
590
|
+
constructor(object) {
|
|
591
|
+
this.isUsernameAvailable = object.isUsernameAvailable;
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
class UserState {
|
|
595
|
+
constructor(userState) {
|
|
596
|
+
this.userStatus = userState;
|
|
597
|
+
this.isUserWithTempPassword = userState == 'FORCE_CHANGE_PASSWORD';
|
|
598
|
+
}
|
|
599
599
|
}
|
|
600
600
|
|
|
601
|
-
// Angular import statements
|
|
602
|
-
class ForgotPasswordComponent {
|
|
603
|
-
constructor(authService, fb, toastr, router, consumingProjectConfigService, consumingProjectAuthService, consumingProjectSSOLoginService) {
|
|
604
|
-
this.authService = authService;
|
|
605
|
-
this.fb = fb;
|
|
606
|
-
this.toastr = toastr;
|
|
607
|
-
this.router = router;
|
|
608
|
-
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
609
|
-
this.consumingProjectAuthService = consumingProjectAuthService;
|
|
610
|
-
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
611
|
-
this.passwordNotMatching = false;
|
|
612
|
-
this.password = { value: null, status: null };
|
|
613
|
-
this.confirmPassword = { value: null, status: null };
|
|
614
|
-
this.infoMessageToRedirectLogin = null;
|
|
615
|
-
this.isLoading = false;
|
|
616
|
-
}
|
|
617
|
-
ngOnInit() {
|
|
618
|
-
this.infoMessageToRedirectLogin = null;
|
|
619
|
-
this.constants = LoginConstant;
|
|
620
|
-
this.onIntialiseForm();
|
|
621
|
-
if (this.consumingProjectAuthService.userName) {
|
|
622
|
-
this.onUpdateForm();
|
|
623
|
-
}
|
|
624
|
-
this.authService.forgotPasswordAndGlobalSignoutLoader = false;
|
|
625
|
-
}
|
|
626
|
-
onIntialiseForm() {
|
|
627
|
-
this.verifyRegisteredEmail = this.fb.group({
|
|
628
|
-
email: [null, [Validators.required]],
|
|
629
|
-
});
|
|
630
|
-
}
|
|
631
|
-
onUpdateForm() {
|
|
632
|
-
this.verifyRegisteredEmail.patchValue({
|
|
633
|
-
email: this.consumingProjectAuthService.userName,
|
|
634
|
-
});
|
|
635
|
-
}
|
|
636
|
-
isFormValid() {
|
|
637
|
-
return this.verifyRegisteredEmail.valid;
|
|
638
|
-
}
|
|
639
|
-
onLoginOrGetOtpButtonClick() {
|
|
640
|
-
if (this.infoMessageToRedirectLogin) {
|
|
641
|
-
this.router.navigate([LoginConstant.loginPageUrl]);
|
|
642
|
-
}
|
|
643
|
-
else {
|
|
644
|
-
this.onVerifyRegisteredEmail();
|
|
645
|
-
}
|
|
646
|
-
}
|
|
647
|
-
onVerifyRegisteredEmail() {
|
|
648
|
-
this.isLoading = true;
|
|
649
|
-
this.errorMessage = null;
|
|
650
|
-
this.infoMessageToRedirectLogin = null;
|
|
651
|
-
let username = this.verifyRegisteredEmail.controls['email'].value;
|
|
652
|
-
let isUsernameAvailable = this.authService.consumingProjectAuthService.isUsernameAvailable(username);
|
|
653
|
-
let isUsernameTempPasswordSet = this.authService.consumingProjectAuthService.getUserState(username);
|
|
654
|
-
forkJoin([isUsernameAvailable, isUsernameTempPasswordSet]).subscribe({
|
|
655
|
-
next: (result) => {
|
|
656
|
-
let isUsernameAvailable = new UsernameInfo(result[0]).isUsernameAvailable;
|
|
657
|
-
let isUserWithTempPassword = new UserState(result[1]).isUserWithTempPassword;
|
|
658
|
-
this.onGettingUserStatus(isUsernameAvailable, isUserWithTempPassword, username);
|
|
659
|
-
this.isLoading = false;
|
|
660
|
-
},
|
|
661
|
-
error: (error) => {
|
|
662
|
-
if (error.status == 400) {
|
|
663
|
-
this.errorMessage = this.constants.userNotFound;
|
|
664
|
-
}
|
|
665
|
-
else {
|
|
666
|
-
this.toastr.error(LoginConstant.apiFailErrorMessage);
|
|
667
|
-
}
|
|
668
|
-
this.isLoading = false;
|
|
669
|
-
},
|
|
670
|
-
});
|
|
671
|
-
}
|
|
672
|
-
onGettingUserStatus(isUsernameAvailable, isUserWithTempPassword, username) {
|
|
673
|
-
if (!isUsernameAvailable) {
|
|
674
|
-
if (!isUserWithTempPassword) {
|
|
675
|
-
this.authService.onForgotPasswordGenerateOTP(username);
|
|
676
|
-
}
|
|
677
|
-
else {
|
|
678
|
-
this.infoMessageToRedirectLogin = this.constants.firstTimeLoginUserTempPasswordMsg;
|
|
679
|
-
}
|
|
680
|
-
}
|
|
681
|
-
else {
|
|
682
|
-
this.errorMessage = this.constants.userNotFound;
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
}
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
689
|
-
type: Component,
|
|
690
|
-
args: [{ selector: 'anna-cognito-lib-forgot-password', standalone: true, imports: [
|
|
691
|
-
FormsModule,
|
|
692
|
-
ReactiveFormsModule,
|
|
693
|
-
NgIf,
|
|
694
|
-
NgClass,
|
|
695
|
-
SpinnerButtonDirective,
|
|
696
|
-
PoweredByLogoTemplateComponent,
|
|
697
|
-
SurewavesYearLogoComponent,
|
|
698
|
-
VersionAndTermPolicyComponent,
|
|
699
|
-
], template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img\r\n [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n alt=\"Anna Logo\"\r\n />\r\n </header>\r\n <article>\r\n <form [formGroup]=\"verifyRegisteredEmail\">\r\n <ng-container *ngIf=\"!infoMessageToRedirectLogin\">\r\n <div id=\"heading\">\r\n {{ constants.forgotPasswordHeading }}\r\n </div>\r\n <p>\r\n {{\r\n consumingProjectSSOLoginService?.isSsoIntegrated\r\n ? constants.PleaseEnterYourUsercodeMessage\r\n : constants.PleaseEnterYourUsernameMessage\r\n }}\r\n </p>\r\n </ng-container>\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"errorMessage\"\r\n >\r\n <span class=\"material-icons\">report</span>\r\n <p id=\"alert-msg\">{{ errorMessage }}</p>\r\n </div>\r\n <div\r\n id=\"info-div\"\r\n *ngIf=\"infoMessageToRedirectLogin\"\r\n >\r\n <i class=\"mi mdi-info\"></i>\r\n <p>{{ infoMessageToRedirectLogin }}</p>\r\n </div>\r\n\r\n <input\r\n *ngIf=\"!infoMessageToRedirectLogin\"\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"email\"\r\n [placeholder]=\"\r\n consumingProjectSSOLoginService?.isSsoIntegrated\r\n ? constants.enterUserCode\r\n : constants.enterEmail\r\n \"\r\n [ngClass]=\"{\r\n 'input-invalid':\r\n verifyRegisteredEmail.get('email')?.dirty && verifyRegisteredEmail.get('email')?.errors\r\n }\"\r\n />\r\n\r\n <button\r\n tabindex=\"2\"\r\n type=\"submit\"\r\n class=\"login-btn\"\r\n [anna-cognito-lib-SpinnerButton]=\"isLoading\"\r\n (click)=\"onLoginOrGetOtpButtonClick()\"\r\n [spinnerButtonText]=\"infoMessageToRedirectLogin ? constants.login : constants.forgotPasswordButton\"\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}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:16px}input[type=text]:focus{box-shadow:none}.back-btn{font-size:27px;position:relative;color:#268bff;float:left;top:-30px;left:-15px;font-weight:400!important}\n"] }]
|
|
700
|
-
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i2.FormBuilder }, { type: i4.ToastrService }, { type: i1.Router }, { type: undefined, decorators: [{
|
|
701
|
-
type: Inject,
|
|
702
|
-
args: [CONFIG_SERVICE_TOKEN]
|
|
703
|
-
}] }, { type: undefined, decorators: [{
|
|
704
|
-
type: Inject,
|
|
705
|
-
args: [AUTH_SERVICE_TOKEN]
|
|
706
|
-
}] }, { type: undefined, decorators: [{
|
|
707
|
-
type: Inject,
|
|
708
|
-
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
601
|
+
// Angular import statements
|
|
602
|
+
class ForgotPasswordComponent {
|
|
603
|
+
constructor(authService, fb, toastr, router, consumingProjectConfigService, consumingProjectAuthService, consumingProjectSSOLoginService) {
|
|
604
|
+
this.authService = authService;
|
|
605
|
+
this.fb = fb;
|
|
606
|
+
this.toastr = toastr;
|
|
607
|
+
this.router = router;
|
|
608
|
+
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
609
|
+
this.consumingProjectAuthService = consumingProjectAuthService;
|
|
610
|
+
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
611
|
+
this.passwordNotMatching = false;
|
|
612
|
+
this.password = { value: null, status: null };
|
|
613
|
+
this.confirmPassword = { value: null, status: null };
|
|
614
|
+
this.infoMessageToRedirectLogin = null;
|
|
615
|
+
this.isLoading = false;
|
|
616
|
+
}
|
|
617
|
+
ngOnInit() {
|
|
618
|
+
this.infoMessageToRedirectLogin = null;
|
|
619
|
+
this.constants = LoginConstant;
|
|
620
|
+
this.onIntialiseForm();
|
|
621
|
+
if (this.consumingProjectAuthService.userName) {
|
|
622
|
+
this.onUpdateForm();
|
|
623
|
+
}
|
|
624
|
+
this.authService.forgotPasswordAndGlobalSignoutLoader = false;
|
|
625
|
+
}
|
|
626
|
+
onIntialiseForm() {
|
|
627
|
+
this.verifyRegisteredEmail = this.fb.group({
|
|
628
|
+
email: [null, [Validators.required]],
|
|
629
|
+
});
|
|
630
|
+
}
|
|
631
|
+
onUpdateForm() {
|
|
632
|
+
this.verifyRegisteredEmail.patchValue({
|
|
633
|
+
email: this.consumingProjectAuthService.userName,
|
|
634
|
+
});
|
|
635
|
+
}
|
|
636
|
+
isFormValid() {
|
|
637
|
+
return this.verifyRegisteredEmail.valid;
|
|
638
|
+
}
|
|
639
|
+
onLoginOrGetOtpButtonClick() {
|
|
640
|
+
if (this.infoMessageToRedirectLogin) {
|
|
641
|
+
this.router.navigate([LoginConstant.loginPageUrl]);
|
|
642
|
+
}
|
|
643
|
+
else {
|
|
644
|
+
this.onVerifyRegisteredEmail();
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
onVerifyRegisteredEmail() {
|
|
648
|
+
this.isLoading = true;
|
|
649
|
+
this.errorMessage = null;
|
|
650
|
+
this.infoMessageToRedirectLogin = null;
|
|
651
|
+
let username = this.verifyRegisteredEmail.controls['email'].value;
|
|
652
|
+
let isUsernameAvailable = this.authService.consumingProjectAuthService.isUsernameAvailable(username);
|
|
653
|
+
let isUsernameTempPasswordSet = this.authService.consumingProjectAuthService.getUserState(username);
|
|
654
|
+
forkJoin([isUsernameAvailable, isUsernameTempPasswordSet]).subscribe({
|
|
655
|
+
next: (result) => {
|
|
656
|
+
let isUsernameAvailable = new UsernameInfo(result[0]).isUsernameAvailable;
|
|
657
|
+
let isUserWithTempPassword = new UserState(result[1]).isUserWithTempPassword;
|
|
658
|
+
this.onGettingUserStatus(isUsernameAvailable, isUserWithTempPassword, username);
|
|
659
|
+
this.isLoading = false;
|
|
660
|
+
},
|
|
661
|
+
error: (error) => {
|
|
662
|
+
if (error.status == 400) {
|
|
663
|
+
this.errorMessage = this.constants.userNotFound;
|
|
664
|
+
}
|
|
665
|
+
else {
|
|
666
|
+
this.toastr.error(LoginConstant.apiFailErrorMessage);
|
|
667
|
+
}
|
|
668
|
+
this.isLoading = false;
|
|
669
|
+
},
|
|
670
|
+
});
|
|
671
|
+
}
|
|
672
|
+
onGettingUserStatus(isUsernameAvailable, isUserWithTempPassword, username) {
|
|
673
|
+
if (!isUsernameAvailable) {
|
|
674
|
+
if (!isUserWithTempPassword) {
|
|
675
|
+
this.authService.onForgotPasswordGenerateOTP(username);
|
|
676
|
+
}
|
|
677
|
+
else {
|
|
678
|
+
this.infoMessageToRedirectLogin = this.constants.firstTimeLoginUserTempPasswordMsg;
|
|
679
|
+
}
|
|
680
|
+
}
|
|
681
|
+
else {
|
|
682
|
+
this.errorMessage = this.constants.userNotFound;
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ForgotPasswordComponent, deps: [{ token: AnnaLibAuthService }, { token: i2.FormBuilder }, { token: i4.ToastrService }, { token: i1.Router }, { token: CONFIG_SERVICE_TOKEN }, { token: AUTH_SERVICE_TOKEN }, { token: SSO_LOGIN_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
686
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ForgotPasswordComponent, isStandalone: true, selector: "anna-cognito-lib-forgot-password", ngImport: i0, template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img\r\n [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n alt=\"Anna Logo\"\r\n />\r\n </header>\r\n <article>\r\n <form [formGroup]=\"verifyRegisteredEmail\">\r\n <ng-container *ngIf=\"!infoMessageToRedirectLogin\">\r\n <div id=\"heading\">\r\n {{ constants.forgotPasswordHeading }}\r\n </div>\r\n <p>\r\n {{\r\n consumingProjectSSOLoginService?.isSsoIntegrated\r\n ? constants.PleaseEnterYourUsercodeMessage\r\n : constants.PleaseEnterYourUsernameMessage\r\n }}\r\n </p>\r\n </ng-container>\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"errorMessage\"\r\n >\r\n <span class=\"material-icons\">report</span>\r\n <p id=\"alert-msg\">{{ errorMessage }}</p>\r\n </div>\r\n <div\r\n id=\"info-div\"\r\n *ngIf=\"infoMessageToRedirectLogin\"\r\n >\r\n <i class=\"mi mdi-info\"></i>\r\n <p>{{ infoMessageToRedirectLogin }}</p>\r\n </div>\r\n\r\n <input\r\n *ngIf=\"!infoMessageToRedirectLogin\"\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"email\"\r\n [placeholder]=\"\r\n consumingProjectSSOLoginService?.isSsoIntegrated\r\n ? constants.enterUserCode\r\n : constants.enterEmail\r\n \"\r\n [ngClass]=\"{\r\n 'input-invalid':\r\n verifyRegisteredEmail.get('email')?.dirty && verifyRegisteredEmail.get('email')?.errors\r\n }\"\r\n />\r\n\r\n <button\r\n tabindex=\"2\"\r\n type=\"submit\"\r\n class=\"login-btn\"\r\n [anna-cognito-lib-SpinnerButton]=\"isLoading\"\r\n (click)=\"onLoginOrGetOtpButtonClick()\"\r\n [spinnerButtonText]=\"infoMessageToRedirectLogin ? constants.login : constants.forgotPasswordButton\"\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}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:16px}input[type=text]:focus{box-shadow:none}.back-btn{font-size:27px;position:relative;color:#268bff;float:left;top:-30px;left:-15px;font-weight:400!important}\n"], dependencies: [{ 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: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: SpinnerButtonDirective, selector: "[anna-cognito-lib-SpinnerButton]", inputs: ["anna-cognito-lib-SpinnerButton", "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" }] }); }
|
|
687
|
+
}
|
|
688
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ForgotPasswordComponent, decorators: [{
|
|
689
|
+
type: Component,
|
|
690
|
+
args: [{ selector: 'anna-cognito-lib-forgot-password', standalone: true, imports: [
|
|
691
|
+
FormsModule,
|
|
692
|
+
ReactiveFormsModule,
|
|
693
|
+
NgIf,
|
|
694
|
+
NgClass,
|
|
695
|
+
SpinnerButtonDirective,
|
|
696
|
+
PoweredByLogoTemplateComponent,
|
|
697
|
+
SurewavesYearLogoComponent,
|
|
698
|
+
VersionAndTermPolicyComponent,
|
|
699
|
+
], template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img\r\n [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n alt=\"Anna Logo\"\r\n />\r\n </header>\r\n <article>\r\n <form [formGroup]=\"verifyRegisteredEmail\">\r\n <ng-container *ngIf=\"!infoMessageToRedirectLogin\">\r\n <div id=\"heading\">\r\n {{ constants.forgotPasswordHeading }}\r\n </div>\r\n <p>\r\n {{\r\n consumingProjectSSOLoginService?.isSsoIntegrated\r\n ? constants.PleaseEnterYourUsercodeMessage\r\n : constants.PleaseEnterYourUsernameMessage\r\n }}\r\n </p>\r\n </ng-container>\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"errorMessage\"\r\n >\r\n <span class=\"material-icons\">report</span>\r\n <p id=\"alert-msg\">{{ errorMessage }}</p>\r\n </div>\r\n <div\r\n id=\"info-div\"\r\n *ngIf=\"infoMessageToRedirectLogin\"\r\n >\r\n <i class=\"mi mdi-info\"></i>\r\n <p>{{ infoMessageToRedirectLogin }}</p>\r\n </div>\r\n\r\n <input\r\n *ngIf=\"!infoMessageToRedirectLogin\"\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"email\"\r\n [placeholder]=\"\r\n consumingProjectSSOLoginService?.isSsoIntegrated\r\n ? constants.enterUserCode\r\n : constants.enterEmail\r\n \"\r\n [ngClass]=\"{\r\n 'input-invalid':\r\n verifyRegisteredEmail.get('email')?.dirty && verifyRegisteredEmail.get('email')?.errors\r\n }\"\r\n />\r\n\r\n <button\r\n tabindex=\"2\"\r\n type=\"submit\"\r\n class=\"login-btn\"\r\n [anna-cognito-lib-SpinnerButton]=\"isLoading\"\r\n (click)=\"onLoginOrGetOtpButtonClick()\"\r\n [spinnerButtonText]=\"infoMessageToRedirectLogin ? constants.login : constants.forgotPasswordButton\"\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}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:16px}input[type=text]:focus{box-shadow:none}.back-btn{font-size:27px;position:relative;color:#268bff;float:left;top:-30px;left:-15px;font-weight:400!important}\n"] }]
|
|
700
|
+
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i2.FormBuilder }, { type: i4.ToastrService }, { type: i1.Router }, { type: undefined, decorators: [{
|
|
701
|
+
type: Inject,
|
|
702
|
+
args: [CONFIG_SERVICE_TOKEN]
|
|
703
|
+
}] }, { type: undefined, decorators: [{
|
|
704
|
+
type: Inject,
|
|
705
|
+
args: [AUTH_SERVICE_TOKEN]
|
|
706
|
+
}] }, { type: undefined, decorators: [{
|
|
707
|
+
type: Inject,
|
|
708
|
+
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
709
709
|
}] }]; } });
|
|
710
710
|
|
|
711
|
-
// Angular import statements
|
|
712
|
-
class PasswordMatchingComponent {
|
|
713
|
-
constructor(fb) {
|
|
714
|
-
this.fb = fb;
|
|
715
|
-
this.passwordChange = new EventEmitter();
|
|
716
|
-
this.confirmPasswordChange = new EventEmitter();
|
|
717
|
-
}
|
|
718
|
-
ngOnInit() {
|
|
719
|
-
this.constants = LoginConstant;
|
|
720
|
-
this.createGroup();
|
|
721
|
-
this.formValueChanged();
|
|
722
|
-
}
|
|
723
|
-
formValueChanged() {
|
|
724
|
-
const password = this.passwordForm.get('password');
|
|
725
|
-
const confirmPassword = this.passwordForm.get('confirmPassword');
|
|
726
|
-
password &&
|
|
727
|
-
password.valueChanges.subscribe(() => {
|
|
728
|
-
password &&
|
|
729
|
-
password.setValidators([
|
|
730
|
-
Validators.required,
|
|
731
|
-
this.regexValidator(new RegExp('.{8,}'), { minLength: true }),
|
|
732
|
-
this.regexValidator(new RegExp('[a-z]'), { lowercase: true }),
|
|
733
|
-
this.regexValidator(new RegExp('[A-Z]'), { uppercase: true }),
|
|
734
|
-
this.regexValidator(new RegExp('[0-9]'), { number: true }),
|
|
735
|
-
this.regexValidator(new RegExp('[^a-zA-Z0-9]'), { specialCharacter: true }),
|
|
736
|
-
]);
|
|
737
|
-
password.updateValueAndValidity({ emitEvent: false });
|
|
738
|
-
this.onPasswordChange();
|
|
739
|
-
});
|
|
740
|
-
if (confirmPassword) {
|
|
741
|
-
confirmPassword.valueChanges.pipe(debounceTime(300)).subscribe(() => {
|
|
742
|
-
confirmPassword.setValidators([Validators.required]);
|
|
743
|
-
confirmPassword.updateValueAndValidity({ emitEvent: false });
|
|
744
|
-
this.onConfirmPasswordChange();
|
|
745
|
-
});
|
|
746
|
-
}
|
|
747
|
-
}
|
|
748
|
-
onPasswordChange() {
|
|
749
|
-
let result = {
|
|
750
|
-
value: this.passwordForm.value.password,
|
|
751
|
-
status: this.passwordForm.controls['password'].status,
|
|
752
|
-
};
|
|
753
|
-
this.passwordChange.emit(result);
|
|
754
|
-
}
|
|
755
|
-
onConfirmPasswordChange() {
|
|
756
|
-
let result = {
|
|
757
|
-
value: this.passwordForm.value.confirmPassword,
|
|
758
|
-
status: this.passwordForm.controls['confirmPassword'].status,
|
|
759
|
-
};
|
|
760
|
-
this.confirmPasswordChange.emit(result);
|
|
761
|
-
}
|
|
762
|
-
createGroup() {
|
|
763
|
-
this.passwordForm = this.fb.group({
|
|
764
|
-
password: [null],
|
|
765
|
-
confirmPassword: [null],
|
|
766
|
-
});
|
|
767
|
-
return this.passwordForm;
|
|
768
|
-
}
|
|
769
|
-
// TODO: check the return again
|
|
770
|
-
regexValidator(regex, error) {
|
|
771
|
-
return (control) => {
|
|
772
|
-
const valid = regex.test(control.value);
|
|
773
|
-
return (valid ? null : error);
|
|
774
|
-
};
|
|
775
|
-
}
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
780
|
-
type: Component,
|
|
781
|
-
args: [{ selector: 'anna-cognito-lib-password-matching', standalone: true, imports: [FormsModule, ReactiveFormsModule, NgIf, NgClass], template: "<form [formGroup]=\"passwordForm\">\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"passwordNotMatching\"\r\n >\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p>{{ constants.passwordNotMatching }}</p>\r\n </div>\r\n <div class=\"password-policies\">\r\n <ng-container *ngIf=\"!passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }} </b>\r\n </p>\r\n <p>{{ constants.minimumCharacter }}</p>\r\n <p>{{ constants.oneUppercase }}</p>\r\n <p>{{ constants.oneLowercase }}</p>\r\n <p>{{ constants.oneNumber }}</p>\r\n <p>{{ constants.specialCharacter }}</p>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }}</b>\r\n </p>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('minLength') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('minLength')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('minLength')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.minimumCharacter }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('uppercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('uppercase')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('uppercase')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneUppercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('lowercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('lowercase')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('lowercase')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneLowercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('number') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('number')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('number')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneNumber }}</span>\r\n </div>\r\n\r\n <div\r\n [ngClass]=\"passwordForm.get('password')?.hasError('specialCharacter') ? 'error-color' : 'success-color'\"\r\n >\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('specialCharacter')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('specialCharacter')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.specialCharacter }}</span>\r\n </div>\r\n </ng-container>\r\n </div>\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"2\"\r\n formControlName=\"password\"\r\n [placeholder]=\"constants.password\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"3\"\r\n formControlName=\"confirmPassword\"\r\n [placeholder]=\"constants.confirmPassword\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n</form>\r\n", styles: ["input[type=password],input[type=text]{width:100%;height:30px;padding:10px 16px;border:1px solid #979797;margin-bottom:.625rem;border-radius:.375rem}input[type=password].ng-dirty.ng-invalid,.input-invalid{border:1px solid #fe3824!important}input[type=password]:focus:focus{outline:none;box-shadow:none}input[type=password]:focus::placeholder{color:#a4a4a4}.password-policies{margin-bottom:1rem}.password-policies p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal;margin-bottom:0}.span-text{vertical-align:top;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal}#icon-div-msg{display:inline;margin-right:.3125rem}#icon-div-msg .material-icons{margin-top:1px;font-size:16px}#alert-div{padding:4px 0 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3}#alert-div #icon-div{width:18px;margin-top:-5px;display:inline-block}#alert-div #icon-div .material-icons{color:#f44336;font-size:1.125rem;margin-left:.5rem}#alert-div p{display:inline;vertical-align:top;margin-left:.5rem;color:#4a4a4a;font-family:Roboto;font-size:.7188rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.error-color{color:#fe3824}.success-color{color:#43a047}\n"] }]
|
|
782
|
-
}], ctorParameters: function () { return [{ type: i2.FormBuilder, decorators: [{
|
|
783
|
-
type: Inject,
|
|
784
|
-
args: [FormBuilder]
|
|
785
|
-
}] }]; }, propDecorators: { passwordChange: [{
|
|
786
|
-
type: Output
|
|
787
|
-
}], confirmPasswordChange: [{
|
|
788
|
-
type: Output
|
|
789
|
-
}], passwordNotMatching: [{
|
|
790
|
-
type: Input
|
|
711
|
+
// Angular import statements
|
|
712
|
+
class PasswordMatchingComponent {
|
|
713
|
+
constructor(fb) {
|
|
714
|
+
this.fb = fb;
|
|
715
|
+
this.passwordChange = new EventEmitter();
|
|
716
|
+
this.confirmPasswordChange = new EventEmitter();
|
|
717
|
+
}
|
|
718
|
+
ngOnInit() {
|
|
719
|
+
this.constants = LoginConstant;
|
|
720
|
+
this.createGroup();
|
|
721
|
+
this.formValueChanged();
|
|
722
|
+
}
|
|
723
|
+
formValueChanged() {
|
|
724
|
+
const password = this.passwordForm.get('password');
|
|
725
|
+
const confirmPassword = this.passwordForm.get('confirmPassword');
|
|
726
|
+
password &&
|
|
727
|
+
password.valueChanges.subscribe(() => {
|
|
728
|
+
password &&
|
|
729
|
+
password.setValidators([
|
|
730
|
+
Validators.required,
|
|
731
|
+
this.regexValidator(new RegExp('.{8,}'), { minLength: true }),
|
|
732
|
+
this.regexValidator(new RegExp('[a-z]'), { lowercase: true }),
|
|
733
|
+
this.regexValidator(new RegExp('[A-Z]'), { uppercase: true }),
|
|
734
|
+
this.regexValidator(new RegExp('[0-9]'), { number: true }),
|
|
735
|
+
this.regexValidator(new RegExp('[^a-zA-Z0-9]'), { specialCharacter: true }),
|
|
736
|
+
]);
|
|
737
|
+
password.updateValueAndValidity({ emitEvent: false });
|
|
738
|
+
this.onPasswordChange();
|
|
739
|
+
});
|
|
740
|
+
if (confirmPassword) {
|
|
741
|
+
confirmPassword.valueChanges.pipe(debounceTime(300)).subscribe(() => {
|
|
742
|
+
confirmPassword.setValidators([Validators.required]);
|
|
743
|
+
confirmPassword.updateValueAndValidity({ emitEvent: false });
|
|
744
|
+
this.onConfirmPasswordChange();
|
|
745
|
+
});
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
onPasswordChange() {
|
|
749
|
+
let result = {
|
|
750
|
+
value: this.passwordForm.value.password,
|
|
751
|
+
status: this.passwordForm.controls['password'].status,
|
|
752
|
+
};
|
|
753
|
+
this.passwordChange.emit(result);
|
|
754
|
+
}
|
|
755
|
+
onConfirmPasswordChange() {
|
|
756
|
+
let result = {
|
|
757
|
+
value: this.passwordForm.value.confirmPassword,
|
|
758
|
+
status: this.passwordForm.controls['confirmPassword'].status,
|
|
759
|
+
};
|
|
760
|
+
this.confirmPasswordChange.emit(result);
|
|
761
|
+
}
|
|
762
|
+
createGroup() {
|
|
763
|
+
this.passwordForm = this.fb.group({
|
|
764
|
+
password: [null],
|
|
765
|
+
confirmPassword: [null],
|
|
766
|
+
});
|
|
767
|
+
return this.passwordForm;
|
|
768
|
+
}
|
|
769
|
+
// TODO: check the return again
|
|
770
|
+
regexValidator(regex, error) {
|
|
771
|
+
return (control) => {
|
|
772
|
+
const valid = regex.test(control.value);
|
|
773
|
+
return (valid ? null : error);
|
|
774
|
+
};
|
|
775
|
+
}
|
|
776
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PasswordMatchingComponent, deps: [{ token: FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
777
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PasswordMatchingComponent, isStandalone: true, selector: "anna-cognito-lib-password-matching", inputs: { passwordNotMatching: "passwordNotMatching" }, outputs: { passwordChange: "passwordChange", confirmPasswordChange: "confirmPasswordChange" }, ngImport: i0, template: "<form [formGroup]=\"passwordForm\">\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"passwordNotMatching\"\r\n >\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p>{{ constants.passwordNotMatching }}</p>\r\n </div>\r\n <div class=\"password-policies\">\r\n <ng-container *ngIf=\"!passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }} </b>\r\n </p>\r\n <p>{{ constants.minimumCharacter }}</p>\r\n <p>{{ constants.oneUppercase }}</p>\r\n <p>{{ constants.oneLowercase }}</p>\r\n <p>{{ constants.oneNumber }}</p>\r\n <p>{{ constants.specialCharacter }}</p>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }}</b>\r\n </p>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('minLength') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('minLength')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('minLength')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.minimumCharacter }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('uppercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('uppercase')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('uppercase')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneUppercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('lowercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('lowercase')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('lowercase')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneLowercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('number') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('number')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('number')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneNumber }}</span>\r\n </div>\r\n\r\n <div\r\n [ngClass]=\"passwordForm.get('password')?.hasError('specialCharacter') ? 'error-color' : 'success-color'\"\r\n >\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('specialCharacter')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('specialCharacter')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.specialCharacter }}</span>\r\n </div>\r\n </ng-container>\r\n </div>\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"2\"\r\n formControlName=\"password\"\r\n [placeholder]=\"constants.password\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"3\"\r\n formControlName=\"confirmPassword\"\r\n [placeholder]=\"constants.confirmPassword\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n</form>\r\n", styles: ["input[type=password],input[type=text]{width:100%;height:30px;padding:10px 16px;border:1px solid #979797;margin-bottom:.625rem;border-radius:.375rem}input[type=password].ng-dirty.ng-invalid,.input-invalid{border:1px solid #fe3824!important}input[type=password]:focus:focus{outline:none;box-shadow:none}input[type=password]:focus::placeholder{color:#a4a4a4}.password-policies{margin-bottom:1rem}.password-policies p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal;margin-bottom:0}.span-text{vertical-align:top;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal}#icon-div-msg{display:inline;margin-right:.3125rem}#icon-div-msg .material-icons{margin-top:1px;font-size:16px}#alert-div{padding:4px 0 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3}#alert-div #icon-div{width:18px;margin-top:-5px;display:inline-block}#alert-div #icon-div .material-icons{color:#f44336;font-size:1.125rem;margin-left:.5rem}#alert-div p{display:inline;vertical-align:top;margin-left:.5rem;color:#4a4a4a;font-family:Roboto;font-size:.7188rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.error-color{color:#fe3824}.success-color{color:#43a047}\n"], dependencies: [{ 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: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
|
|
778
|
+
}
|
|
779
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PasswordMatchingComponent, decorators: [{
|
|
780
|
+
type: Component,
|
|
781
|
+
args: [{ selector: 'anna-cognito-lib-password-matching', standalone: true, imports: [FormsModule, ReactiveFormsModule, NgIf, NgClass], template: "<form [formGroup]=\"passwordForm\">\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"passwordNotMatching\"\r\n >\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p>{{ constants.passwordNotMatching }}</p>\r\n </div>\r\n <div class=\"password-policies\">\r\n <ng-container *ngIf=\"!passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }} </b>\r\n </p>\r\n <p>{{ constants.minimumCharacter }}</p>\r\n <p>{{ constants.oneUppercase }}</p>\r\n <p>{{ constants.oneLowercase }}</p>\r\n <p>{{ constants.oneNumber }}</p>\r\n <p>{{ constants.specialCharacter }}</p>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }}</b>\r\n </p>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('minLength') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('minLength')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('minLength')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.minimumCharacter }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('uppercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('uppercase')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('uppercase')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneUppercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('lowercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('lowercase')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('lowercase')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneLowercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('number') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('number')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('number')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneNumber }}</span>\r\n </div>\r\n\r\n <div\r\n [ngClass]=\"passwordForm.get('password')?.hasError('specialCharacter') ? 'error-color' : 'success-color'\"\r\n >\r\n <div id=\"icon-div-msg\">\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"passwordForm.get('password')?.hasError('specialCharacter')\"\r\n >\r\n cancel\r\n </span>\r\n <span\r\n class=\"material-icons\"\r\n *ngIf=\"!passwordForm.get('password')?.hasError('specialCharacter')\"\r\n >\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.specialCharacter }}</span>\r\n </div>\r\n </ng-container>\r\n </div>\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"2\"\r\n formControlName=\"password\"\r\n [placeholder]=\"constants.password\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"3\"\r\n formControlName=\"confirmPassword\"\r\n [placeholder]=\"constants.confirmPassword\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n</form>\r\n", styles: ["input[type=password],input[type=text]{width:100%;height:30px;padding:10px 16px;border:1px solid #979797;margin-bottom:.625rem;border-radius:.375rem}input[type=password].ng-dirty.ng-invalid,.input-invalid{border:1px solid #fe3824!important}input[type=password]:focus:focus{outline:none;box-shadow:none}input[type=password]:focus::placeholder{color:#a4a4a4}.password-policies{margin-bottom:1rem}.password-policies p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal;margin-bottom:0}.span-text{vertical-align:top;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal}#icon-div-msg{display:inline;margin-right:.3125rem}#icon-div-msg .material-icons{margin-top:1px;font-size:16px}#alert-div{padding:4px 0 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3}#alert-div #icon-div{width:18px;margin-top:-5px;display:inline-block}#alert-div #icon-div .material-icons{color:#f44336;font-size:1.125rem;margin-left:.5rem}#alert-div p{display:inline;vertical-align:top;margin-left:.5rem;color:#4a4a4a;font-family:Roboto;font-size:.7188rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.error-color{color:#fe3824}.success-color{color:#43a047}\n"] }]
|
|
782
|
+
}], ctorParameters: function () { return [{ type: i2.FormBuilder, decorators: [{
|
|
783
|
+
type: Inject,
|
|
784
|
+
args: [FormBuilder]
|
|
785
|
+
}] }]; }, propDecorators: { passwordChange: [{
|
|
786
|
+
type: Output
|
|
787
|
+
}], confirmPasswordChange: [{
|
|
788
|
+
type: Output
|
|
789
|
+
}], passwordNotMatching: [{
|
|
790
|
+
type: Input
|
|
791
791
|
}] } });
|
|
792
792
|
|
|
793
|
-
// Angular import statements
|
|
794
|
-
class SetNewPasswordComponent {
|
|
795
|
-
constructor(authService, router, consumingProjectConfigService) {
|
|
796
|
-
this.authService = authService;
|
|
797
|
-
this.router = router;
|
|
798
|
-
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
799
|
-
this.passwordNotMatching = false;
|
|
800
|
-
this.password = { value: null, status: null };
|
|
801
|
-
this.confirmPassword = { value: null, status: null };
|
|
802
|
-
}
|
|
803
|
-
ngOnInit() {
|
|
804
|
-
this.constants = LoginConstant;
|
|
805
|
-
this.authService.setNewPasswordButtonMessage = LoginConstant.setNewPasswordButton;
|
|
806
|
-
}
|
|
807
|
-
isFormValid() {
|
|
808
|
-
return this.password.status === 'VALID' && this.confirmPassword.status === 'VALID';
|
|
809
|
-
}
|
|
810
|
-
onPasswordChange($event) {
|
|
811
|
-
this.password = $event;
|
|
812
|
-
}
|
|
813
|
-
onConfirmPasswordChange($event) {
|
|
814
|
-
this.confirmPassword = $event;
|
|
815
|
-
}
|
|
816
|
-
onSettingNewPassword() {
|
|
817
|
-
if (this.password.value != this.confirmPassword.value) {
|
|
818
|
-
this.passwordNotMatching = true;
|
|
819
|
-
}
|
|
820
|
-
else {
|
|
821
|
-
this.passwordNotMatching = false;
|
|
822
|
-
if (this.authService.setNewPasswordButtonMessage === LoginConstant.loginAgain) {
|
|
823
|
-
this.router.navigate([LoginConstant.loginPageUrl]);
|
|
824
|
-
}
|
|
825
|
-
else {
|
|
826
|
-
this.authService.changePassword(this.password.value);
|
|
827
|
-
}
|
|
828
|
-
}
|
|
829
|
-
}
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
834
|
-
type: Component,
|
|
835
|
-
args: [{ selector: 'anna-cognito-lib-set-new-password', standalone: true, imports: [
|
|
836
|
-
FormsModule,
|
|
837
|
-
NgIf,
|
|
838
|
-
PasswordMatchingComponent,
|
|
839
|
-
PoweredByLogoTemplateComponent,
|
|
840
|
-
SurewavesYearLogoComponent,
|
|
841
|
-
VersionAndTermPolicyComponent,
|
|
842
|
-
], template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img\r\n [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n alt=\"Anna Logo\"\r\n />\r\n </header>\r\n <article>\r\n <form>\r\n <div id=\"heading\">\r\n {{ constants.setNewPasswordHeading }}\r\n </div>\r\n\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"authService.setNewPasswordErrorMessage\"\r\n >\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.setNewPasswordErrorMessage }}</p>\r\n </div>\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button\r\n tabindex=\"3\"\r\n class=\"login-btn\"\r\n [disabled]=\"!isFormValid()\"\r\n (click)=\"onSettingNewPassword()\"\r\n >\r\n {{ authService.setNewPasswordButtonMessage }}\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}\n"] }]
|
|
843
|
-
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i1.Router }, { type: undefined, decorators: [{
|
|
844
|
-
type: Inject,
|
|
845
|
-
args: [CONFIG_SERVICE_TOKEN]
|
|
793
|
+
// Angular import statements
|
|
794
|
+
class SetNewPasswordComponent {
|
|
795
|
+
constructor(authService, router, consumingProjectConfigService) {
|
|
796
|
+
this.authService = authService;
|
|
797
|
+
this.router = router;
|
|
798
|
+
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
799
|
+
this.passwordNotMatching = false;
|
|
800
|
+
this.password = { value: null, status: null };
|
|
801
|
+
this.confirmPassword = { value: null, status: null };
|
|
802
|
+
}
|
|
803
|
+
ngOnInit() {
|
|
804
|
+
this.constants = LoginConstant;
|
|
805
|
+
this.authService.setNewPasswordButtonMessage = LoginConstant.setNewPasswordButton;
|
|
806
|
+
}
|
|
807
|
+
isFormValid() {
|
|
808
|
+
return this.password.status === 'VALID' && this.confirmPassword.status === 'VALID';
|
|
809
|
+
}
|
|
810
|
+
onPasswordChange($event) {
|
|
811
|
+
this.password = $event;
|
|
812
|
+
}
|
|
813
|
+
onConfirmPasswordChange($event) {
|
|
814
|
+
this.confirmPassword = $event;
|
|
815
|
+
}
|
|
816
|
+
onSettingNewPassword() {
|
|
817
|
+
if (this.password.value != this.confirmPassword.value) {
|
|
818
|
+
this.passwordNotMatching = true;
|
|
819
|
+
}
|
|
820
|
+
else {
|
|
821
|
+
this.passwordNotMatching = false;
|
|
822
|
+
if (this.authService.setNewPasswordButtonMessage === LoginConstant.loginAgain) {
|
|
823
|
+
this.router.navigate([LoginConstant.loginPageUrl]);
|
|
824
|
+
}
|
|
825
|
+
else {
|
|
826
|
+
this.authService.changePassword(this.password.value);
|
|
827
|
+
}
|
|
828
|
+
}
|
|
829
|
+
}
|
|
830
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SetNewPasswordComponent, deps: [{ token: AnnaLibAuthService }, { token: i1.Router }, { token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
831
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SetNewPasswordComponent, isStandalone: true, selector: "anna-cognito-lib-set-new-password", ngImport: i0, template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img\r\n [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n alt=\"Anna Logo\"\r\n />\r\n </header>\r\n <article>\r\n <form>\r\n <div id=\"heading\">\r\n {{ constants.setNewPasswordHeading }}\r\n </div>\r\n\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"authService.setNewPasswordErrorMessage\"\r\n >\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.setNewPasswordErrorMessage }}</p>\r\n </div>\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button\r\n tabindex=\"3\"\r\n class=\"login-btn\"\r\n [disabled]=\"!isFormValid()\"\r\n (click)=\"onSettingNewPassword()\"\r\n >\r\n {{ authService.setNewPasswordButtonMessage }}\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}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: PasswordMatchingComponent, selector: "anna-cognito-lib-password-matching", inputs: ["passwordNotMatching"], outputs: ["passwordChange", "confirmPasswordChange"] }, { 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" }] }); }
|
|
832
|
+
}
|
|
833
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SetNewPasswordComponent, decorators: [{
|
|
834
|
+
type: Component,
|
|
835
|
+
args: [{ selector: 'anna-cognito-lib-set-new-password', standalone: true, imports: [
|
|
836
|
+
FormsModule,
|
|
837
|
+
NgIf,
|
|
838
|
+
PasswordMatchingComponent,
|
|
839
|
+
PoweredByLogoTemplateComponent,
|
|
840
|
+
SurewavesYearLogoComponent,
|
|
841
|
+
VersionAndTermPolicyComponent,
|
|
842
|
+
], template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img\r\n [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n alt=\"Anna Logo\"\r\n />\r\n </header>\r\n <article>\r\n <form>\r\n <div id=\"heading\">\r\n {{ constants.setNewPasswordHeading }}\r\n </div>\r\n\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"authService.setNewPasswordErrorMessage\"\r\n >\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.setNewPasswordErrorMessage }}</p>\r\n </div>\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button\r\n tabindex=\"3\"\r\n class=\"login-btn\"\r\n [disabled]=\"!isFormValid()\"\r\n (click)=\"onSettingNewPassword()\"\r\n >\r\n {{ authService.setNewPasswordButtonMessage }}\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}\n"] }]
|
|
843
|
+
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i1.Router }, { type: undefined, decorators: [{
|
|
844
|
+
type: Inject,
|
|
845
|
+
args: [CONFIG_SERVICE_TOKEN]
|
|
846
846
|
}] }]; } });
|
|
847
847
|
|
|
848
|
-
// Angular import statements
|
|
849
|
-
class VerifyAndSetNewPasswordComponent {
|
|
850
|
-
constructor(authService, fb, router, consumingProjectConfigService) {
|
|
851
|
-
this.authService = authService;
|
|
852
|
-
this.fb = fb;
|
|
853
|
-
this.router = router;
|
|
854
|
-
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
855
|
-
this.passwordNotMatching = false;
|
|
856
|
-
this.password = { value: null, status: null };
|
|
857
|
-
this.confirmPassword = { value: null, status: null };
|
|
858
|
-
}
|
|
859
|
-
ngOnInit() {
|
|
860
|
-
this.constants = LoginConstant;
|
|
861
|
-
this.authService.verifyAndSetNewPasswordButton = LoginConstant.setNewPasswordButton;
|
|
862
|
-
this.onIntialiseForm();
|
|
863
|
-
}
|
|
864
|
-
onIntialiseForm() {
|
|
865
|
-
this.verifyOtpForm = this.fb.group({
|
|
866
|
-
otp: [null, [Validators.required]],
|
|
867
|
-
});
|
|
868
|
-
}
|
|
869
|
-
isFormValid() {
|
|
870
|
-
if (this.password.status === 'VALID' &&
|
|
871
|
-
this.confirmPassword.status === 'VALID' &&
|
|
872
|
-
this.verifyOtpForm.controls['otp'].valid) {
|
|
873
|
-
return true;
|
|
874
|
-
}
|
|
875
|
-
return false;
|
|
876
|
-
}
|
|
877
|
-
onPasswordChange($event) {
|
|
878
|
-
this.password = $event;
|
|
879
|
-
}
|
|
880
|
-
onConfirmPasswordChange($event) {
|
|
881
|
-
this.confirmPassword = $event;
|
|
882
|
-
}
|
|
883
|
-
onVerifyOtpSettingNewPassword() {
|
|
884
|
-
if (this.password.value != this.confirmPassword.value) {
|
|
885
|
-
this.passwordNotMatching = true;
|
|
886
|
-
}
|
|
887
|
-
else {
|
|
888
|
-
this.passwordNotMatching = false;
|
|
889
|
-
this.authService.forgotPasswordAndGlobalSignoutLoader = true;
|
|
890
|
-
if (this.authService.verifyAndSetNewPasswordButton === LoginConstant.regenerateOtp) {
|
|
891
|
-
this.router.navigate([LoginConstant.forgortPasswordPageUrl]);
|
|
892
|
-
}
|
|
893
|
-
else {
|
|
894
|
-
this.password.value &&
|
|
895
|
-
this.authService.verifyCode(this.verifyOtpForm.controls['otp'].value, this.password.value);
|
|
896
|
-
}
|
|
897
|
-
}
|
|
898
|
-
}
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
903
|
-
type: Component,
|
|
904
|
-
args: [{ selector: 'anna-cognito-lib-verify-and-set-new-password', standalone: true, imports: [
|
|
905
|
-
NgClass,
|
|
906
|
-
RouterLink,
|
|
907
|
-
FormsModule,
|
|
908
|
-
ReactiveFormsModule,
|
|
909
|
-
NgIf,
|
|
910
|
-
PasswordMatchingComponent,
|
|
911
|
-
SpinnerButtonDirective,
|
|
912
|
-
PoweredByLogoTemplateComponent,
|
|
913
|
-
SurewavesYearLogoComponent,
|
|
914
|
-
VersionAndTermPolicyComponent,
|
|
915
|
-
], template: "<div\r\n class=\"main\"\r\n [ngClass]=\"{ 'main-height': authService.verifyAndSetNewPasswordErrorMessage }\"\r\n>\r\n <section>\r\n <header>\r\n <img\r\n [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n alt=\"Anna Logo\"\r\n />\r\n </header>\r\n <article>\r\n <span\r\n class=\"back-btn\"\r\n [routerLink]=\"constants.forgortPasswordPageUrl\"\r\n >\r\n <i class=\"mdi mdi-arrow-left\"></i>\r\n </span>\r\n\r\n <form [formGroup]=\"verifyOtpForm\">\r\n <div\r\n class=\"pull-left\"\r\n id=\"heading\"\r\n >\r\n {{ constants.verifyAndSetNewPasswordheading }}\r\n </div>\r\n <p>{{ authService.verifyAndSetNewPasswordMessage }}</p>\r\n\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"authService.verifyAndSetNewPasswordErrorMessage\"\r\n >\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p id=\"display-block-msg\">{{ authService.verifyAndSetNewPasswordErrorMessage }}</p>\r\n </div>\r\n\r\n <input\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"otp\"\r\n [placeholder]=\"constants.enterOtp\"\r\n autocomplete=\"new-field-name\"\r\n [ngClass]=\"{ 'input-invalid': authService.verifyAndSetNewPasswordErrorMessage }\"\r\n />\r\n\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button\r\n tabindex=\"4\"\r\n class=\"login-btn\"\r\n type=\"submit\"\r\n [disabled]=\"authService.sessionLocked || !isFormValid()\"\r\n (click)=\"onVerifyOtpSettingNewPassword()\"\r\n [anna-cognito-lib-SpinnerButton]=\"authService.forgotPasswordAndGlobalSignoutLoader\"\r\n [spinnerButtonText]=\"authService.verifyAndSetNewPasswordButton\"\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}.main{height:calc(115vh - 50px)}.main-height{height:calc(125vh - 50px)}section{top:52%}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:24px}input[type=text]:focus{box-shadow:none}.back-btn{width:27px;height:27px;top:-27px;left:-15px;cursor:pointer;position:relative;color:#268bff;float:left;border-radius:50%;border:1px solid #268bff;background-color:#f4f4f4}.back-btn i{position:absolute;top:.1875rem;left:.25rem}\n"] }]
|
|
916
|
-
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i2.FormBuilder }, { type: i1.Router }, { type: undefined, decorators: [{
|
|
917
|
-
type: Inject,
|
|
918
|
-
args: [CONFIG_SERVICE_TOKEN]
|
|
848
|
+
// Angular import statements
|
|
849
|
+
class VerifyAndSetNewPasswordComponent {
|
|
850
|
+
constructor(authService, fb, router, consumingProjectConfigService) {
|
|
851
|
+
this.authService = authService;
|
|
852
|
+
this.fb = fb;
|
|
853
|
+
this.router = router;
|
|
854
|
+
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
855
|
+
this.passwordNotMatching = false;
|
|
856
|
+
this.password = { value: null, status: null };
|
|
857
|
+
this.confirmPassword = { value: null, status: null };
|
|
858
|
+
}
|
|
859
|
+
ngOnInit() {
|
|
860
|
+
this.constants = LoginConstant;
|
|
861
|
+
this.authService.verifyAndSetNewPasswordButton = LoginConstant.setNewPasswordButton;
|
|
862
|
+
this.onIntialiseForm();
|
|
863
|
+
}
|
|
864
|
+
onIntialiseForm() {
|
|
865
|
+
this.verifyOtpForm = this.fb.group({
|
|
866
|
+
otp: [null, [Validators.required]],
|
|
867
|
+
});
|
|
868
|
+
}
|
|
869
|
+
isFormValid() {
|
|
870
|
+
if (this.password.status === 'VALID' &&
|
|
871
|
+
this.confirmPassword.status === 'VALID' &&
|
|
872
|
+
this.verifyOtpForm.controls['otp'].valid) {
|
|
873
|
+
return true;
|
|
874
|
+
}
|
|
875
|
+
return false;
|
|
876
|
+
}
|
|
877
|
+
onPasswordChange($event) {
|
|
878
|
+
this.password = $event;
|
|
879
|
+
}
|
|
880
|
+
onConfirmPasswordChange($event) {
|
|
881
|
+
this.confirmPassword = $event;
|
|
882
|
+
}
|
|
883
|
+
onVerifyOtpSettingNewPassword() {
|
|
884
|
+
if (this.password.value != this.confirmPassword.value) {
|
|
885
|
+
this.passwordNotMatching = true;
|
|
886
|
+
}
|
|
887
|
+
else {
|
|
888
|
+
this.passwordNotMatching = false;
|
|
889
|
+
this.authService.forgotPasswordAndGlobalSignoutLoader = true;
|
|
890
|
+
if (this.authService.verifyAndSetNewPasswordButton === LoginConstant.regenerateOtp) {
|
|
891
|
+
this.router.navigate([LoginConstant.forgortPasswordPageUrl]);
|
|
892
|
+
}
|
|
893
|
+
else {
|
|
894
|
+
this.password.value &&
|
|
895
|
+
this.authService.verifyCode(this.verifyOtpForm.controls['otp'].value, this.password.value);
|
|
896
|
+
}
|
|
897
|
+
}
|
|
898
|
+
}
|
|
899
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: VerifyAndSetNewPasswordComponent, deps: [{ token: AnnaLibAuthService }, { token: i2.FormBuilder }, { token: i1.Router }, { token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
900
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: VerifyAndSetNewPasswordComponent, isStandalone: true, selector: "anna-cognito-lib-verify-and-set-new-password", ngImport: i0, template: "<div\r\n class=\"main\"\r\n [ngClass]=\"{ 'main-height': authService.verifyAndSetNewPasswordErrorMessage }\"\r\n>\r\n <section>\r\n <header>\r\n <img\r\n [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n alt=\"Anna Logo\"\r\n />\r\n </header>\r\n <article>\r\n <span\r\n class=\"back-btn\"\r\n [routerLink]=\"constants.forgortPasswordPageUrl\"\r\n >\r\n <i class=\"mdi mdi-arrow-left\"></i>\r\n </span>\r\n\r\n <form [formGroup]=\"verifyOtpForm\">\r\n <div\r\n class=\"pull-left\"\r\n id=\"heading\"\r\n >\r\n {{ constants.verifyAndSetNewPasswordheading }}\r\n </div>\r\n <p>{{ authService.verifyAndSetNewPasswordMessage }}</p>\r\n\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"authService.verifyAndSetNewPasswordErrorMessage\"\r\n >\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p id=\"display-block-msg\">{{ authService.verifyAndSetNewPasswordErrorMessage }}</p>\r\n </div>\r\n\r\n <input\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"otp\"\r\n [placeholder]=\"constants.enterOtp\"\r\n autocomplete=\"new-field-name\"\r\n [ngClass]=\"{ 'input-invalid': authService.verifyAndSetNewPasswordErrorMessage }\"\r\n />\r\n\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button\r\n tabindex=\"4\"\r\n class=\"login-btn\"\r\n type=\"submit\"\r\n [disabled]=\"authService.sessionLocked || !isFormValid()\"\r\n (click)=\"onVerifyOtpSettingNewPassword()\"\r\n [anna-cognito-lib-SpinnerButton]=\"authService.forgotPasswordAndGlobalSignoutLoader\"\r\n [spinnerButtonText]=\"authService.verifyAndSetNewPasswordButton\"\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}.main{height:calc(115vh - 50px)}.main-height{height:calc(125vh - 50px)}section{top:52%}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:24px}input[type=text]:focus{box-shadow:none}.back-btn{width:27px;height:27px;top:-27px;left:-15px;cursor:pointer;position:relative;color:#268bff;float:left;border-radius:50%;border:1px solid #268bff;background-color:#f4f4f4}.back-btn i{position:absolute;top:.1875rem;left:.25rem}\n"], dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { 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: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: PasswordMatchingComponent, selector: "anna-cognito-lib-password-matching", inputs: ["passwordNotMatching"], outputs: ["passwordChange", "confirmPasswordChange"] }, { kind: "directive", type: SpinnerButtonDirective, selector: "[anna-cognito-lib-SpinnerButton]", inputs: ["anna-cognito-lib-SpinnerButton", "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" }] }); }
|
|
901
|
+
}
|
|
902
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: VerifyAndSetNewPasswordComponent, decorators: [{
|
|
903
|
+
type: Component,
|
|
904
|
+
args: [{ selector: 'anna-cognito-lib-verify-and-set-new-password', standalone: true, imports: [
|
|
905
|
+
NgClass,
|
|
906
|
+
RouterLink,
|
|
907
|
+
FormsModule,
|
|
908
|
+
ReactiveFormsModule,
|
|
909
|
+
NgIf,
|
|
910
|
+
PasswordMatchingComponent,
|
|
911
|
+
SpinnerButtonDirective,
|
|
912
|
+
PoweredByLogoTemplateComponent,
|
|
913
|
+
SurewavesYearLogoComponent,
|
|
914
|
+
VersionAndTermPolicyComponent,
|
|
915
|
+
], template: "<div\r\n class=\"main\"\r\n [ngClass]=\"{ 'main-height': authService.verifyAndSetNewPasswordErrorMessage }\"\r\n>\r\n <section>\r\n <header>\r\n <img\r\n [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\"\r\n alt=\"Anna Logo\"\r\n />\r\n </header>\r\n <article>\r\n <span\r\n class=\"back-btn\"\r\n [routerLink]=\"constants.forgortPasswordPageUrl\"\r\n >\r\n <i class=\"mdi mdi-arrow-left\"></i>\r\n </span>\r\n\r\n <form [formGroup]=\"verifyOtpForm\">\r\n <div\r\n class=\"pull-left\"\r\n id=\"heading\"\r\n >\r\n {{ constants.verifyAndSetNewPasswordheading }}\r\n </div>\r\n <p>{{ authService.verifyAndSetNewPasswordMessage }}</p>\r\n\r\n <div\r\n id=\"alert-div\"\r\n *ngIf=\"authService.verifyAndSetNewPasswordErrorMessage\"\r\n >\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p id=\"display-block-msg\">{{ authService.verifyAndSetNewPasswordErrorMessage }}</p>\r\n </div>\r\n\r\n <input\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"otp\"\r\n [placeholder]=\"constants.enterOtp\"\r\n autocomplete=\"new-field-name\"\r\n [ngClass]=\"{ 'input-invalid': authService.verifyAndSetNewPasswordErrorMessage }\"\r\n />\r\n\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button\r\n tabindex=\"4\"\r\n class=\"login-btn\"\r\n type=\"submit\"\r\n [disabled]=\"authService.sessionLocked || !isFormValid()\"\r\n (click)=\"onVerifyOtpSettingNewPassword()\"\r\n [anna-cognito-lib-SpinnerButton]=\"authService.forgotPasswordAndGlobalSignoutLoader\"\r\n [spinnerButtonText]=\"authService.verifyAndSetNewPasswordButton\"\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}.main{height:calc(115vh - 50px)}.main-height{height:calc(125vh - 50px)}section{top:52%}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:24px}input[type=text]:focus{box-shadow:none}.back-btn{width:27px;height:27px;top:-27px;left:-15px;cursor:pointer;position:relative;color:#268bff;float:left;border-radius:50%;border:1px solid #268bff;background-color:#f4f4f4}.back-btn i{position:absolute;top:.1875rem;left:.25rem}\n"] }]
|
|
916
|
+
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i2.FormBuilder }, { type: i1.Router }, { type: undefined, decorators: [{
|
|
917
|
+
type: Inject,
|
|
918
|
+
args: [CONFIG_SERVICE_TOKEN]
|
|
919
919
|
}] }]; } });
|
|
920
920
|
|
|
921
|
-
class AnnaConfigService {
|
|
922
|
-
constructor(consumingProjectConfigService) {
|
|
923
|
-
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
924
|
-
}
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
929
|
-
type: Injectable,
|
|
930
|
-
args: [{
|
|
931
|
-
providedIn: 'root',
|
|
932
|
-
}]
|
|
933
|
-
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
934
|
-
type: Inject,
|
|
935
|
-
args: [CONFIG_SERVICE_TOKEN]
|
|
921
|
+
class AnnaConfigService {
|
|
922
|
+
constructor(consumingProjectConfigService) {
|
|
923
|
+
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
924
|
+
}
|
|
925
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaConfigService, deps: [{ token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
926
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaConfigService, providedIn: 'root' }); }
|
|
927
|
+
}
|
|
928
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaConfigService, decorators: [{
|
|
929
|
+
type: Injectable,
|
|
930
|
+
args: [{
|
|
931
|
+
providedIn: 'root',
|
|
932
|
+
}]
|
|
933
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
934
|
+
type: Inject,
|
|
935
|
+
args: [CONFIG_SERVICE_TOKEN]
|
|
936
936
|
}] }]; } });
|
|
937
937
|
|
|
938
|
-
class AnnaSSOLoginService {
|
|
939
|
-
constructor(consumingProjectSSOLoginService) {
|
|
940
|
-
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
941
|
-
}
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
946
|
-
type: Injectable,
|
|
947
|
-
args: [{
|
|
948
|
-
providedIn: 'root',
|
|
949
|
-
}]
|
|
950
|
-
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
951
|
-
type: Inject,
|
|
952
|
-
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
938
|
+
class AnnaSSOLoginService {
|
|
939
|
+
constructor(consumingProjectSSOLoginService) {
|
|
940
|
+
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
941
|
+
}
|
|
942
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaSSOLoginService, deps: [{ token: SSO_LOGIN_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
943
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaSSOLoginService, providedIn: 'root' }); }
|
|
944
|
+
}
|
|
945
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaSSOLoginService, decorators: [{
|
|
946
|
+
type: Injectable,
|
|
947
|
+
args: [{
|
|
948
|
+
providedIn: 'root',
|
|
949
|
+
}]
|
|
950
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
951
|
+
type: Inject,
|
|
952
|
+
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
953
953
|
}] }]; } });
|
|
954
954
|
|
|
955
|
-
/*
|
|
956
|
-
* Public API Surface of anna-cognito-lib
|
|
957
|
-
*/
|
|
955
|
+
/*
|
|
956
|
+
* Public API Surface of anna-cognito-lib
|
|
957
|
+
*/
|
|
958
958
|
//COMPONENTS
|
|
959
959
|
|
|
960
|
-
/**
|
|
961
|
-
* Generated bundle index. Do not edit.
|
|
960
|
+
/**
|
|
961
|
+
* Generated bundle index. Do not edit.
|
|
962
962
|
*/
|
|
963
963
|
|
|
964
964
|
export { ACL_SERVICE_TOKEN, AUTH_SERVICE_TOKEN, AnnaConfigService, AnnaLibAclService, AnnaLibAuthService, AnnaLoginComponent, AnnaSSOLoginService, CONFIG_SERVICE_TOKEN, CognitoAndSSOLoginContainerComponent, ForgotPasswordComponent, LoginConstant, PasswordMatchingComponent, PoweredByLogoTemplateComponent, SSO_LOGIN_SERVICE_TOKEN, SetNewPasswordComponent, SpinnerButtonDirective, SsoLoginComponent, SurewavesYearLogoComponent, VerifyAndSetNewPasswordComponent, VersionAndTermPolicyComponent };
|