I need to save login/password for my authenticated user. It seems that LoginForm component is deprecated. How else can i make the client's browser to save entered login & password? Can the SubmintButton class help me somehow?
Thank you.
I would suggest to use cookies and implement a remember me function. That means more or less, you create a cookie with a unique identifier of the user (never! store the user credentials in the cookie). This unique identifier is also stored in your application and should usually have lease time, which expires after a certain time, for security reasons. Every time the user enters your application, the system checks if the cookie still exists and is valid, if so go directly to the application, if not go to the login form.
Perhaps the following link gives you an idea: http://fishbowl.pastiche.org/2004/01/19/persistent_login_cookie_best_practice/