Simple Password Strength Notification Plugin
File Size: | 2.1 KB |
---|---|
Views Total: | 1411 |
Last Update: | |
Publish Date: | |
Official Website: | Go to website |
License: | MIT |
A simple and easy-to-use jQuery plugin that shows the strength of you passwords by telling you how long time it would take to brute force them.
How to use it:
1. Include jQuery and jquery.pwdstr-1.0.source.js
<script src="http://code.jquery.com/jquery-1.5.1.min.js"></script> <script src="http://jquery-pwdstr.googlecode.com/files/jquery.pwdstr-1.0.source.js"></script>
2. Markup
<form> <label>Password strength demonstration</label> <div class="width-hack-input"> <span class="w"> <input id="password" type="password" class="input" /> Your password is forceable in <span id="time">less than one second</span> </span> </div> </form>
3. Call the plugin
<script> $('#password').pwdstr('#time'); </script>
This awesome jQuery plugin is developed by unknown. For more Advanced Usages, please check the demo page or visit the official website.