autofocus password field
This commit is contained in:
parent
b726583084
commit
6c300b7b31
|
@ -91,4 +91,7 @@ class SignUpForm(forms.Form):
|
||||||
class PasswordFactorForm(forms.Form):
|
class PasswordFactorForm(forms.Form):
|
||||||
"""Password authentication form"""
|
"""Password authentication form"""
|
||||||
|
|
||||||
password = forms.CharField(widget=forms.PasswordInput(attrs={'placeholder': _('Password')}))
|
password = forms.CharField(widget=forms.PasswordInput(attrs={
|
||||||
|
'placeholder': _('Password'),
|
||||||
|
'autofocus': 'autofocus'
|
||||||
|
}))
|
||||||
|
|
Reference in New Issue