Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# Imports 

2 

3from django import forms 

4from django.contrib.auth.forms import AuthenticationForm as BaseAuthenticationForm 

5from django.utils.translation import ugettext_lazy as _ 

6 

7# Exports 

8 

9__all__ = ( 

10 "AuthenticationForm", 

11) 

12 

13# Forms 

14 

15 

16class AuthenticationForm(BaseAuthenticationForm): 

17 """User login form with "remember me" option.""" 

18 

19 remember_me = forms.BooleanField( 

20 initial=False, 

21 label=_("Remember Me"), 

22 required=False 

23 )