2016-04-06 10:35:39 +03:00
|
|
|
🔒🔍 strengthify
|
|
|
|
================
|
2013-08-04 17:48:18 +04:00
|
|
|
|
2013-08-04 19:15:06 +04:00
|
|
|
Combine jQuery and zxcvbn to create a password strength meter.
|
|
|
|
|
2016-04-06 10:34:48 +03:00
|
|
|
![Examples](examples.png)
|
|
|
|
|
2013-08-04 19:15:06 +04:00
|
|
|
How to use
|
|
|
|
----------
|
|
|
|
|
2016-04-06 10:27:44 +03:00
|
|
|
As of 0.5.0, the wrapper will be automatically added beneath the target input field
|
2013-08-04 19:15:06 +04:00
|
|
|
|
2016-04-06 10:27:44 +03:00
|
|
|
Add `jquery` (tested with 1.10.0), `jquery.strengthify.js` and
|
2013-09-04 18:01:54 +04:00
|
|
|
`strengthify.css` to your document.
|
2013-08-04 19:15:06 +04:00
|
|
|
|
2016-04-06 10:27:44 +03:00
|
|
|
If using the message option, include bootstrap.
|
|
|
|
|
|
|
|
If using the titles option, include bootstrap's `tooltip.js`,
|
|
|
|
|
2013-08-04 19:15:06 +04:00
|
|
|
```HTML
|
|
|
|
<script src="jquery-1.10.0.min.js"></script>
|
2015-09-23 00:53:07 +03:00
|
|
|
<script src="tooltip.js"></script>
|
2013-08-04 19:15:06 +04:00
|
|
|
<script src="jquery.strengthify.js"></script>
|
2016-04-06 10:27:44 +03:00
|
|
|
<link rel="stylesheet" href="bootstrap.min.css" type="text/css">
|
2013-08-04 19:15:06 +04:00
|
|
|
<link rel="stylesheet" href="strengthify.css" type="text/css">
|
|
|
|
```
|
|
|
|
|
2016-04-06 10:34:48 +03:00
|
|
|
Because [zxcvbn](https://github.com/dropbox/zxcvbn) is really
|
|
|
|
heavyweight, it will be loaded asynchronously from `zxcvbn/zxcvbn.js`.
|
2016-04-06 10:27:44 +03:00
|
|
|
This can however be configured with an optional parameter.
|
2013-08-04 19:15:06 +04:00
|
|
|
|
|
|
|
Then call `.strengthify` on the password input field.
|
|
|
|
|
|
|
|
```JavaScript
|
|
|
|
$('#password-field').strengthify()
|
|
|
|
```
|
|
|
|
|
2015-01-07 02:53:49 +03:00
|
|
|
That's it. Now the password strength meter will be updated after
|
2013-08-04 19:15:06 +04:00
|
|
|
each keystroke.
|
|
|
|
|
|
|
|
Configuration
|
|
|
|
-------------
|
|
|
|
|
|
|
|
The path and the title of the different strength categories can
|
2013-09-04 18:01:54 +04:00
|
|
|
be configured with the first parameter of `.strengthify`.
|
2013-08-04 19:15:06 +04:00
|
|
|
|
2016-04-06 10:27:44 +03:00
|
|
|
|
|
|
|
<dl>
|
2019-03-21 23:43:11 +03:00
|
|
|
<dt>userInputs</dt><dd> an array of strings that zxcvbn will treat as an extra dictionary</dd>
|
2016-04-06 10:27:44 +03:00
|
|
|
<dt>drawTitles</dt><dd> pop-up text (above)</dd>
|
|
|
|
<dt>drawMessage</dt><dd> detailed message beneath input</dd>
|
|
|
|
<dt>drawBars</dt><dd> password strength color progression bars beneath input</dd>
|
2018-01-10 23:16:51 +03:00
|
|
|
<dt>$addAfter</dt><dd> element after which the strengthify element should be inserted</dd>
|
2018-10-03 16:55:36 +03:00
|
|
|
<dt>nonce</dt><dd> a nonce that is added to the `<script>` tag to load the zxcvbn.js file asynchronously</dd>
|
2016-04-06 10:27:44 +03:00
|
|
|
</dl>
|
|
|
|
|
2013-08-04 19:15:06 +04:00
|
|
|
Default:
|
|
|
|
|
|
|
|
```JSON
|
|
|
|
{
|
|
|
|
"zxcvbn": "zxcvbn/zxcvbn.js",
|
2019-03-21 23:43:11 +03:00
|
|
|
"userInputs": [],
|
2013-08-04 19:15:06 +04:00
|
|
|
"titles": [
|
|
|
|
"Weakest",
|
|
|
|
"Weak",
|
|
|
|
"So-so",
|
|
|
|
"Good",
|
|
|
|
"Perfect"
|
2016-04-06 10:27:44 +03:00
|
|
|
],
|
|
|
|
"drawTitles": false,
|
|
|
|
"drawMessage": false,
|
2018-01-10 23:16:51 +03:00
|
|
|
"drawBars": true,
|
2018-03-20 20:24:11 +03:00
|
|
|
"$addAfter": null
|
2013-08-04 19:15:06 +04:00
|
|
|
}
|
|
|
|
```
|
|
|
|
Overwrite example:
|
|
|
|
|
|
|
|
```JavaScript
|
|
|
|
$('#password-field').strengthify({zxcvbn: 'my/path/to/zxcvbn.js'})
|
|
|
|
```
|
|
|
|
|
2018-03-20 20:03:25 +03:00
|
|
|
Use 'onResult' callback option like:
|
|
|
|
|
|
|
|
```JavaScript
|
|
|
|
$('#password-field').strengthify({
|
|
|
|
zxcvbn: 'my/path/to/zxcvbn.js',
|
|
|
|
onResult: function(result) {
|
|
|
|
var submitBtn = $('input[type=submit]');
|
|
|
|
|
|
|
|
if (result.score < 3) {
|
|
|
|
submitBtn.prop('disabled', 'disabled');
|
|
|
|
} else {
|
|
|
|
submitBtn.prop('disabled', false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2013-08-04 19:15:06 +04:00
|
|
|
Versions
|
|
|
|
--------
|
|
|
|
|
|
|
|
<dl>
|
2020-08-03 13:12:17 +03:00
|
|
|
<dt>0.5.9</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>Don't overdo the strength check, the first 100 chars are enough (https://github.com/morrisjobke/strengthify/pull/32)</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
2019-03-25 12:56:32 +03:00
|
|
|
<dt>0.5.8</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
2019-10-18 11:41:55 +03:00
|
|
|
<li>wait for load of script before binding (https://github.com/morrisjobke/strengthify/pull/28)</li>
|
2019-03-25 12:56:32 +03:00
|
|
|
</ul>
|
|
|
|
</dd>
|
2019-03-21 23:54:11 +03:00
|
|
|
<dt>0.5.7</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>add option for user input (#27)</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
2018-10-25 13:05:14 +03:00
|
|
|
<dt>0.5.6</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>set the nonce properly in all browsers (#24)</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
|
|
|
<dt>0.5.5</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>allow to specify a nonce for the loaded script (#23)</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
2018-09-28 13:47:17 +03:00
|
|
|
<dt>0.5.4</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>do not use `eval()` anymore (#19)</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
2018-01-10 23:13:31 +03:00
|
|
|
<dt>0.5.3</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>make possible to specify the element to add the strength bar after (#20)</li>
|
|
|
|
<li>provide minified version (#16)</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
|
|
|
<dt>0.5.2</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>use eval directly (#14)</li>
|
|
|
|
<li>added missing break (#13)</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
|
|
|
<dt>0.5.1</dt>
|
|
|
|
<dd>add tilesOptions (#10) - you can choose now between tooltip and element or both - thanks to @feirer</dd>
|
2016-04-06 10:27:44 +03:00
|
|
|
<dt>0.5.0</dt>
|
|
|
|
<dd> fairly substantial changes:
|
|
|
|
<ul>
|
|
|
|
<li>added feedback message</li>
|
|
|
|
<li> $.each(...) functionality</li>
|
|
|
|
<li> restructuring wrapping</li>
|
|
|
|
<li> feature flags</li>
|
|
|
|
</ul>
|
|
|
|
"strengthify-wrapper" added automatically beneath target input
|
|
|
|
</dd>
|
2015-01-06 15:47:19 +03:00
|
|
|
<dt>0.4.1</dt>
|
|
|
|
<dd>hotfix for missing ;</dd>
|
2015-01-06 15:12:27 +03:00
|
|
|
<dt>0.4</dt>
|
|
|
|
<dd>syntax and performance cleanups</dd>
|
2013-09-04 18:01:54 +04:00
|
|
|
<dt>0.3</dt>
|
|
|
|
<dd>some fixes:
|
|
|
|
<ul>
|
|
|
|
<li>migrate from "display" to "opacity"</li>
|
|
|
|
<li>fix pasting to input field</li>
|
|
|
|
<li>add tipsy with strength</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
|
|
|
<dt>0.2</dt>
|
|
|
|
<dd>solve mimetype issues</dd>
|
2013-08-04 19:15:06 +04:00
|
|
|
<dt>0.1</dt>
|
|
|
|
<dd>Initial version</dd>
|
|
|
|
</dl>
|