1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

add password strength progress bar and warning message

This commit is contained in:
Kyle Spearrin
2018-11-15 14:47:45 -05:00
parent 7b2a35845b
commit fceabbb4bf
6 changed files with 96 additions and 16 deletions

View File

@@ -23,4 +23,21 @@ export class RegisterComponent extends BaseRegisterComponent {
super(authService, router, i18nService, cryptoService, apiService, stateService, platformUtilsService,
passwordGenerationService);
}
get masterPasswordScoreWidth() {
return this.masterPasswordScore == null ? 0 : (this.masterPasswordScore + 1) * 20;
}
get masterPasswordScoreColor() {
switch (this.masterPasswordScore) {
case 4:
return 'bg-success';
case 3:
return 'bg-primary';
case 2:
return 'bg-warning';
default:
return 'bg-danger';
}
}
}