Make email field full width in email login form

This commit is contained in:
Roberto Rosario
2012-01-26 23:10:28 -04:00
parent 30351225f6
commit 8ebd5b8062

View File

@@ -131,7 +131,7 @@ class EmailAuthenticationForm(AuthenticationForm):
authentication
"""
email = forms.CharField(label=_(u'Email'), max_length=75,
widget=EmailInput()
widget=EmailInput(attrs={'style': 'width: 100%;'})
)
def clean(self):