Hello
I got the code to work this way
//Note you need to replace "loginInput" with your login input component name.
var login = Appery("loginUsername").val();
//Note you need to replace "passInput" with your password input component name.
var pass = Appery("loginPassword").val();
localStorage.setItem("login", login);
localStorage.setItem("pass", pass);
and it works great.
I still have one problem. The first time you lauch the app you get and alert [object Object] . I am assuming this is done because the localStorage variables login and pass have not been created. But I dont truly know why. Any suggestions?
Thank You
Vinny