# ng-password-strength **Repository Path**: mirrors_linslin/ng-password-strength ## Basic Information - **Project Name**: ng-password-strength - **Description**: Password strength directive for angular - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-09-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ng-password-strength-maintained Password strength checker wrapped in an angular directive Based on: * [http://blog.brunoscopelliti.com/angularjs-directive-to-test-the-strength-of-a-password][bruno] * [http://www.passwordmeter.com][meter] [bruno]: http://blog.brunoscopelliti.com/angularjs-directive-to-test-the-strength-of-a-password [meter]: http://www.passwordmeter.com ## Examples See `app/index.html` in the respository. [Live example] [live-example] [live-example]: http://subarroca.github.io/ng-password-strength/ ## Usage 1. Bower should add `ng-password-strength.min.js` to you main file (index.html) you can download this by: * using bower and running `bower install ng-password-strength` * downloading the [production version][min] or the [development version][max]. [min]: https://raw.github.com/subarroca/ng-password-strength/master/dist/ng-password-strength.min.js [max]: https://raw.github.com/subarroca/ng-password-strength/master/dist/ng-password-strength.js In your web page: ```html ``` 2. Bower should add `ng-password-strength` to your main file (index.html). Some of them are not automatically added so you'd better check them. ```html ``` 3. Set `ng-password-strength` as a dependency in your module ```javascript var myapp = angular.module('myapp', ['ngPasswordStrength']) ``` 4. Add ng-password-strength directive to the wanted element, example: ```html