2👍
✅
Of course this is not in default login view. But you extend the default login form. Add this remember me feature in extended form, and then declare log in url like this:
url(r'^login/$',
auth_views.login,
{'template_name': 'your/login/template.html', 'form':YourExtendedForm},
name='auth_login'),
Also. There are many remember me snippets and projects out there. Do some googling and you will find working example in no time… like :https://github.com/jimfmunro/django-remember-me
Alan
Source:stackexchange.com