jQuery Pinlogin
jQuery plugin to create a cross-device pincode login experience.
The number of pincode input fields are configurable and the plugin is made in such way that it's able to tackle most usecases. After entering a complete pin code the 'complete' callback will be fired which gives you the possibility to do any further processing. No form or hidden input fields are used to give you the freedom of choice how to handle the pincode input. It is also possible to have multiple instances so you can have a 'registration' procedure where the user needs to enter the pincode twice. How this works is visible in the demo.
Lightly inspired by bootstrap-pincode-input from fkranenburg
Demo
A screenshot of the plugins pincode input fields with single instance to illustrate a login procedure and two instances for registration purposes:
For a working example go to:
https://www.mybo.nu/static/jquery-pinlogin/
Or go to the demo
folder and view the contents of the index.html
file.
Install
NPM
Install with one simple command in your project using npm:
npm install --save jquery-pinlogin
Manually by including scripts
-
Include jQuery:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
-
Include plugin's code:
<script src="jquery.pinlogin.min.js"></script>
-
Include plugin's css:
<link href="jquery.pinlogin.css" rel="stylesheet" type="text/css" />
-
Call the plugin:
var pinlogin = $("#element").pinlogin({ fields: 5, complete : function(pin){ alert ('Awesome! You entered: ' + pin); // further processing here } });
Usage
fields
Number. Default 5
The amount of pincode input fields where the user needs to enter a pin code.
placeholder
String. Default •
Contains the placeholder that's displayed instead of the entered digits. You can use special characters, but if you do make sure your HTML page is properly encoded. For example UTF8:
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
autofocus
Boolean. Default true
.
When the plugin is loaded, automatically focus on the first input field.
hideinput
Boolean. Default true
.
Hides or displays the user entered digits in the input field. When enabled, the caharacter in placeholder
immediately replaces the entered digit.
reset
Boolean. Default true
.
When true, this resets all input fields when filled.
complete
Callback function that will fire when all input fields are filled.
Passed parameters:
pin
String. The entered pincode.
$('#element').pinlogin({ complete : function(pin){ console.log('You entered: ' + pin); }});
invalid
Callback function that will fire when user enters an invalid character in a pincode field.
Passed parameters:
field
Element. The jQuery object of the field that's invalid.nr
Number. The number of the field that's invalid (start counting at 0).
$('#element').pinlogin({ invalid : function(field, nr){ console.log('The field with nr : ' + nr + ' contains an invalid character'); }});
keydown
Callback function that will fire when user presses the key, and right before it reaches the pincode field.
Passed parameters:
e
Event. The 'keydown' event.field
Element. The jQuery object of the field that's getting the keydown.nr
Number. The number of the field that's getting the keydown (start counting at 0).
$('#element').pinlogin({ keydown : function(e, field, nr){ console.log('The field with nr : ' + nr + ' is about to get a value'); }});
Public methods
If you assign the jQuery element to a variable, for example var pinlogin = $('#element').pinlogin(...);
it's possible to use some public methods, explained below, so you can alter the behaviour of the pincode input plugin. Look at the demo to see an example use case for the usage of public methods.
pinlogin.reset()
Resets the whole instance and all the input fields.
pinlogin.resetField(nr)
Reset a single input field.
Parameters:
nr
Number. The number of the field that will be reset (start counting at 0).
pinlogin.disable()
Disables the whole instance and all the input fields.
pinlogin.disableField(nr)
Disable a single input field.
Parameters:
nr
Number. The number of the field that will be disabled (start counting at 0).
pinlogin.enable()
Enables the whole instance and all the input fields.
pinlogin.enableField(nr)
Enable a single input field.
Parameters:
nr
Number. The number of the field that will be enabled (start counting at 0).
pinlogin.focus(nr)
Focus on the specified input field.
Parameters:
nr
Number. The number of the field that will recieve focus (start counting at 0).
License
MIT License © Bob Hageman