I have developed a dynamic Jquery Mobile site consisting of:
- A login page that retrieves customer profile data (PHP, MySQL)
- based on the login data a Listview selection menu of careers is built
- from the careers menu a selection of matching individuals are displayed, data and photos
- from individual data, next screen is a communications screen (email, phone).
There is only one real page load, and that is the first one. Subsequent data needs are all pulled in by AJAX.
My question is:
Abstract:
- going to the site is a pain on a mobile device but this could be alleviated by bookmarking
- Logging on is another pain: typing in user ID, password every time with this torturous keyboard
My customers will all hate repeating the login procedure. On a PC it is ok but on the mobile it really su...
Question:
I am thinking about storing login data on the device and having JQuery preload the form if data is available: Is this feasible? If so, what method do you suggest?
Another own thought is creating a rudimentary app that does the first logon and does the inital part of the access.
Greatful for your knowledge and opinions
/Ralf