Hi, I had seen KTPasswordMeter is being used in HTML demos. While in the Angular demo there is a component named - PasswordMeterComponent.
Now would you please tell, me how to use PasswordMeterComponent on the Angular signup page? I wouldn't like to use it as a global script.
Any doc on PasswordMeterComponent usage in Angular?
Hi,
Unfortunately, in the current version, we don't support PasswordMetter for Angular.
It will be implemented and documented in future releases.
Maybe 3d party library like this will help you: https://www.npmjs.com/package/angular-password-strength-meter.
Regards,
Keenthemes support
Hi, Figured out how to use the component.
import {
PasswordMeterComponent
} from "../../../../_metronic/kt/components";
ngOnInit(): void {
this.initForm();
setTimeout(() => {
PasswordMeterComponent.reinitialization()
}, 50)
}