An easy to implement password strength meter originally developed for the Lifekees Password Manager
Based on:
- https://github.com/subarroca/ng-password-strength
- http://blog.brunoscopelliti.com/angularjs-directive-to-test-the-strength-of-a-password
- http://www.passwordmeter.com
- Add the following in your web page:
<script src="ng-password-meter/ng-password-meter.js"></script>
<script src="ng-password-meter/ng-password-meter.css"></script>
- Set
ng-password-meter
as a dependency in your module
var myapp = angular.module('myapp', ['ngPasswordMeter'])
- Add ng-password-meter to your html at the appropriote position and specify the model to measure. Example:
<ng-password-meter password="pass"></ng-password-meter>
None