mirror of
https://github.com/bitwarden/browser
synced 2026-02-06 03:33:30 +00:00
* Moved password-strength component to Tools * Move zxcvbn into Tools ownership zxcvbn is the library currently used to calculate the password-strength --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
15 lines
323 B
HTML
15 lines
323 B
HTML
<div class="progress">
|
|
<div
|
|
class="progress-bar {{ color }}"
|
|
role="progressbar"
|
|
[ngStyle]="{ width: scoreWidth + '%' }"
|
|
attr.aria-valuenow="{{ scoreWidth }}"
|
|
aria-valuemin="0"
|
|
aria-valuemax="100"
|
|
>
|
|
<ng-container *ngIf="showText && text">
|
|
{{ text }}
|
|
</ng-container>
|
|
</div>
|
|
</div>
|