From 8ebd5b80629c5abe9a656e644e8f1169d6234382 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 26 Jan 2012 23:10:28 -0400 Subject: [PATCH] Make email field full width in email login form --- apps/common/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/forms.py b/apps/common/forms.py index b34bf101a5..ac5527fc9f 100644 --- a/apps/common/forms.py +++ b/apps/common/forms.py @@ -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):