[Answered ]-Remember username after logging out

2👍

The easiest solution would be to just before logout save the username to the session (or directly to a cookie) and on rendering the login page prepopulate the username field if present in the session. All of that will require wrapping default view functions and modifying the login template.

Alternative could be to just save the username to the cookie and use bit of JavaScript code to prepopulate username field.

Both options will require some tweaking to your precise situation.

Leave a comment