*Note: I edited the title to ("Remember me" checkbox for HTML Forms) but it did not change.
Hi,
I'm trying to implement a Remember me feature for this form below. I'm using my demo website to login to another website. I did a couple of searches here on Dani's and in google but all I found was for php logins.
I understand that it deals with browser cookies and stuff. So, I hope someone could point me out to a simple tutorial.
<form action="http://someOtherwebsite.com/security/login" accept-charset="utf-8" method="post">
<label>Username:</label>
<input class="field" maxlength="50" name="username" value="" type="text" id="form_username" />
<label>Password:</label>
<input class="field" maxlength="50" name="password" value="" type="password" id="form_password" />
<label><input id="rememberme" name="rememberme" value="remember" type="checkbox" /> Remember me</label>
<input type="submit" name="submit" value="Login" class="bt_login" />
</form>