Posted on 27/05/2014 13:12:54
"Make it possible to have auto login work with a session cookie by default. (as an option in the backend or a checkbox)"
- But then the login will expire at the end of the session, which is the same behaviour as when auto login is disabled?
"And if the user want's to use auto login for a longer period that he accepts the auto login for x days."
- The user can already enable/disable autologin, but not select a specific number of days. Why should the user be able to select the number of days?
<form method="post">
<input type="hidden" name="DWExtranetUsernameRemember" value="True" />
<input type="hidden" name="DWExtranetPasswordRemember" value="True" />
<label>Username:<input type="text" name="username" value="<!--@DwExtranetUsername-->" /></label>
<label>Password:<input type="password" name="password" value="<!--@DwExtranetPassword-->" /></label>
<fieldset>
<legend>Keep me logged in for 30 days</legend>
<label><input type="radio" name="AutoLogin" value="True" />Yes</label>
<label><input type="radio" name="AutoLogin" value="False" checked />No</label>
</fieldset>
<input type="submit" value="Log in" />
</form>