mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
25 lines
741 B
HTML
25 lines
741 B
HTML
<bit-callout>
|
|
{{ message | i18n }}
|
|
|
|
<ul *ngIf="policy" class="tw-mb-0">
|
|
<li *ngIf="policy?.minComplexity > 0">
|
|
{{ "policyInEffectMinComplexity" | i18n: getPasswordScoreAlertDisplay() }}
|
|
</li>
|
|
<li *ngIf="policy?.minLength > 0">
|
|
{{ "policyInEffectMinLength" | i18n: policy?.minLength.toString() }}
|
|
</li>
|
|
<li *ngIf="policy?.requireUpper">
|
|
{{ "policyInEffectUppercase" | i18n }}
|
|
</li>
|
|
<li *ngIf="policy?.requireLower">
|
|
{{ "policyInEffectLowercase" | i18n }}
|
|
</li>
|
|
<li *ngIf="policy?.requireNumbers">
|
|
{{ "policyInEffectNumbers" | i18n }}
|
|
</li>
|
|
<li *ngIf="policy?.requireSpecial">
|
|
{{ "policyInEffectSpecial" | i18n: "!@#$%^&*" }}
|
|
</li>
|
|
</ul>
|
|
</bit-callout>
|