https://github.com/platform45/nakedpassword
jQuery plugin to encourage strong user passwords
https://github.com/platform45/nakedpassword
Last synced: 9 months ago
JSON representation
jQuery plugin to encourage strong user passwords
- Host: GitHub
- URL: https://github.com/platform45/nakedpassword
- Owner: platform45
- Created: 2010-01-22T09:50:43.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2020-06-25T08:12:27.000Z (over 5 years ago)
- Last Synced: 2024-10-30T06:33:46.889Z (about 1 year ago)
- Language: CSS
- Homepage: http://www.nakedpassword.com
- Size: 421 KB
- Stars: 308
- Watchers: 26
- Forks: 31
- Open Issues: 6
-
Metadata Files:
- Readme: README.rdoc
Awesome Lists containing this project
- awesome-frontend - nakedpassword - 用脱衣女帮助检测密码强度
- awesome-frontend - nakedpassword - 用脱衣女帮助检测密码强度
- awesome-front-end - nakedpassword - 用脱衣女帮助检测密码强度
README
= Naked Password
Simple jQuery plugin to improve security on passwords.
== Usage
Naked password is extremely easy to use. All thats needed is for you to attach nakedPassword(); to one or all of your password fields.
$("input:password").nakedPassword();
Naked password comes with two default sets of images (male and female).
They are set using either an m or a f in front of the image name. These can be switched using the 'sex' variable.
It defaults to
$("input:password").nakedPassword({sex: "f"});
$("input:password").nakedPassword({sex: "m"});
Naked password assumes that the images are uploaded in a publicly accessible folder called "images/". You can overwrite the images path as follows:
$("input:password").nakedPassword({path: "/new_image_path/"});
And thats it! Feel free to fork a copy and push any changes to us, and we'll gladly implement them.
== Thanks
* michaelficarra