This repository has been archived and is no longer actively maintained. While it was a valuable resource during my Angular development journey, I have since shifted my focus to React for my current and future projects. Feel free to explore the existing code, but please note that issues and pull requests will not be addressed.
Angular widget for password strength estimation using zxcvbn, simple and pretty.
If you 👍 this project, consider giving it a ★, thanks! 🙌
npm install @eisberg-labs/ngx-strength-meter --save
First import to your module:
@NgModule({
declarations: [
AppComponent
],
imports: [
StrengthMeterModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
And use in your component html
<form [formGroup]="form" name="form">
<mat-form-field>
<input name="password" matInput placeholder="Input password" type="password" formControlName="password">
</mat-form-field>
<strength-meter [value]="form.value.password" (measure)="onStrengthChange($event)"></strength-meter>
</form>
- value: string: The password input for which the strength will be calculated.
- measure: EventEmitter: Emits the strength score (0 to 4) when the strength is calculated. Explanations on the meaning of grades is here, but you can guess that 0 is bad, 4 is good.
All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.
I follow the Rust Code of Conduct.
Everyone is welcome to contribute. You can read more about contributing here.
If you find this project useful, give it a star. You could also consider supporting us through the following platforms:
As this project grows, I will showcase sponsors' logos and links in this section. Thank you for your support!
Feel free to reach out to me on LinkedIn.
This project is MIT licensed.