Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steffest/patternlock
Standalone javascript library to transform a standard password input box of a HTML form into a 9-dot pattern lock.
Targeted at mobile webapplications where drawing a pattern on the touchscreen is far easier than typing in a password.
Works on every major desktop and mobile browser.
https://github.com/steffest/patternlock
Last synced: 11 days ago
JSON representation
Standalone javascript library to transform a standard password input box of a HTML form into a 9-dot pattern lock. Targeted at mobile webapplications where drawing a pattern on the touchscreen is far easier than typing in a password. Works on every major desktop and mobile browser.
- Host: GitHub
- URL: https://github.com/steffest/patternlock
- Owner: steffest
- Created: 2015-04-02T18:39:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-07T11:34:07.000Z (about 9 years ago)
- Last Synced: 2023-08-01T01:07:20.473Z (over 1 year ago)
- Language: JavaScript
- Size: 185 KB
- Stars: 21
- Watchers: 5
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PatternLock
Standalone javascript library to transform a standard password input box of a HTML form into a 9-dot pattern lock.
Targeted at mobile webapplications where drawing a pattern on the touchscreen is far easier than typing in a password.Works on every major desktop and mobile browser.
(This repository was moved from https://9dotpatternlock.codeplex.com/)
Example use
Copy the _img,_script and _style folders to your hosting
Copy these 2 lines in your HTML source<link rel="stylesheet" type="text/css" href="_style/patternlock.css"/>
<script src="_script/patternlock.js"></script>give your password input element the className "patternlock"
e.g. <input type="password" name="password" class="patternlock">Live demo at http://www.stef.be/dev/javascript/patternlock/