Remove "Remember me" in login box

For enhanced security reasons we've disabled (hidden) the "Remember me" functionality at login time (works fine, but we have to do it for each new version again and again). Is it possible to make this configurable in a future version (don't know if other FileVista customers already asked for this earlier) ?
Herman 6/8/2009 5:19 AM
No other customer requested this feature but we may add a setting for this in future versions.
Cem Alacayir 6/18/2009 3:16 PM
I would love to see the functionality to disable "remember me" at login also.  Even hiding this would work for me.  Is there an easy way to accomplish this?

Thanks.

Adam
Adam Smith 7/15/2010 1:28 PM
You could edit the "login.aspx" and

change this:
<input id="remember" name="remember" type="checkbox" />

to this:
<input id="remember" name="remember" type="checkbox" disabled="disabled" />

It will show the box but you can't click it.
Don't remove the box because then you can't login at all.
Chris Adelt 7/22/2010 3:20 AM
Another way of getting rid of the "Remember me" box is to modify login.aspx in a different way. Now the checkbox is not visible anymore, but the full login logic stills works and the user has to enter his username always (even more secure).

Replace:
    value="<%=InsertRememberedUsername%>"
With:
   value=""

AND

Replace:
  <tr><td></td><td><input id="remember"
With:
  <tr style="display: none"><td></td><td><input id="remember"
Herman 7/22/2010 3:57 AM