@Babycat - You could store those details in a local text file, and check its existence in the login process.
Not terribly secure but if they have logged in before then does it matter?
@Babycat - You could store those details in a local text file, and check its existence in the login process.
Not terribly secure but if they have logged in before then does it matter?
Not so clear what you mean, but the case is user selecting "remember me" on login form for the 1st login, next time they will not need to type username & password again.
This looks impossible if a fresh new FE is downloaded from server...
Add a Boolean field to store the Remember Me value in the users table in the BE.
When the user first ticks that box, the value is set to True jn the table.
I use the same approach to store user preferences like Don't Show This Help Form again based on a checkbox each user can tick.
Having said all that, its not at all secure if you allow users to bypass the login process.
You may as well have no login process at all
I thought you were using the network user login name in which case it would apply.
Either way, you should not be allowing users to bypass the login process
Using "remember me" defeats the purpose of having security. I don't recommend it. If you insist, there are ways other than storing the credentials in a local table.