2022-09-01 09:44:39 +02:00
|
|
|
<div class="validation-col" *ngIf="policy">
|
|
|
|
<div class="val" *ngIf="policy.minLength">
|
2022-01-04 10:56:29 +01:00
|
|
|
<i *ngIf="password?.value?.length === 0; else showSpinner" class="las la-times red"></i>
|
2020-07-30 16:54:15 +02:00
|
|
|
|
2022-01-04 10:56:29 +01:00
|
|
|
<ng-template #showSpinner>
|
2022-09-01 09:44:39 +02:00
|
|
|
<div
|
|
|
|
*ngIf="password?.errors?.minlength || password?.value?.length === 0 as currentError; else trueminlength"
|
|
|
|
class="complexity-sp-wrapper"
|
|
|
|
>
|
|
|
|
<mat-progress-spinner
|
|
|
|
class="complexity-spinner"
|
|
|
|
diameter="20"
|
|
|
|
[color]="currentError ? 'warn' : 'valid'"
|
|
|
|
mode="determinate"
|
|
|
|
[value]="(password?.value?.length / policy.minLength) * 100"
|
|
|
|
>
|
2022-01-04 10:56:29 +01:00
|
|
|
</mat-progress-spinner>
|
|
|
|
</div>
|
|
|
|
</ng-template>
|
|
|
|
<ng-template #trueminlength>
|
|
|
|
<i class="las la-check green"></i>
|
|
|
|
</ng-template>
|
2020-07-30 16:54:15 +02:00
|
|
|
|
2022-09-01 09:44:39 +02:00
|
|
|
<span class="cnsl-secondary-text"
|
2023-01-11 14:23:16 +01:00
|
|
|
>{{ 'USER.PASSWORD.MINLENGTHERROR' | translate : { value: policy.minLength } }} ({{ password?.value?.length }}/{{
|
2022-09-01 09:44:39 +02:00
|
|
|
policy.minLength
|
|
|
|
}})
|
2022-01-04 10:56:29 +01:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div class="val" *ngIf="this.policy.hasSymbol">
|
|
|
|
<i *ngIf="password?.errors?.symbolValidator" class="las la-times red"></i>
|
|
|
|
<i *ngIf="!password?.errors?.symbolValidator" class="las la-check green"></i>
|
2022-04-28 12:35:02 +02:00
|
|
|
<span class="cnsl-secondary-text"> {{ 'USER.VALIDATION.SYMBOLERROR' | translate }}</span>
|
2022-01-04 10:56:29 +01:00
|
|
|
</div>
|
|
|
|
<div class="val" *ngIf="this.policy.hasNumber">
|
|
|
|
<i *ngIf="password?.errors?.numberValidator" class="las la-times red"></i>
|
|
|
|
<i *ngIf="!password?.errors?.numberValidator" class="las la-check green"></i>
|
2022-04-28 12:35:02 +02:00
|
|
|
<span class="cnsl-secondary-text"> {{ 'USER.VALIDATION.NUMBERERROR' | translate }}</span>
|
2022-01-04 10:56:29 +01:00
|
|
|
</div>
|
|
|
|
<div class="val" *ngIf="this.policy.hasUppercase">
|
|
|
|
<i *ngIf="password?.errors?.upperCaseValidator" class="las la-times red"></i>
|
|
|
|
<i *ngIf="!password?.errors?.upperCaseValidator" class="las la-check green"></i>
|
2022-04-28 12:35:02 +02:00
|
|
|
<span class="cnsl-secondary-text"> {{ 'USER.VALIDATION.UPPERCASEMISSING' | translate }}</span>
|
2022-01-04 10:56:29 +01:00
|
|
|
</div>
|
|
|
|
<div class="val" *ngIf="this.policy.hasLowercase">
|
|
|
|
<i *ngIf="password?.errors?.lowerCaseValidator" class="las la-times red"></i>
|
|
|
|
<i *ngIf="!password?.errors?.lowerCaseValidator" class="las la-check green"></i>
|
2022-04-28 12:35:02 +02:00
|
|
|
<span class="cnsl-secondary-text">{{ 'USER.VALIDATION.LOWERCASEMISSING' | translate }}</span>
|
2022-01-04 10:56:29 +01:00
|
|
|
</div>
|
2022-09-01 09:44:39 +02:00
|
|
|
</div>
|