PhoneGap numeric password dialog plugin for Android and iOS. Forked from https://github.com/apache/cordova-plugin-dialogs.git
Latest stable release: phonegap local cordova-plugin-pin-dialog
or cordova plugin add cordova-plugin-pin-dialog
Current state from git: phonegap local plugin add https://github.com/Paldom/PinDialog.git
or cordova plugin add https://github.com/Paldom/PinDialog.git
Version with disable closing by back button on Android:
cordova plugin add https://github.com/Sveta-K13/PinDialog.git
- Android
- iOS
// Show pin dialog
window.plugins.pinDialog.prompt("message", callback, "title", ["OK","Cancel"]);
Callback:
function callback(results)
{
if(results.buttonIndex == 1)
{
// OK clicked, show input value
alert(results.input1);
}
if(results.buttonIndex == 2)
{
// Cancel clicked
alert("Cancel");
}
};
MIT License