From 605ad870b8d8b0154b3f27e730d1b3fff02c789b Mon Sep 17 00:00:00 2001 From: dwickwire Date: Mon, 6 Feb 2012 08:54:52 -0600 Subject: [PATCH] Adding autofocus to Email field --- cas_provider/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cas_provider/forms.py b/cas_provider/forms.py index df62a41..b3a4012 100644 --- a/cas_provider/forms.py +++ b/cas_provider/forms.py @@ -4,7 +4,7 @@ from django.contrib.auth import authenticate class LoginForm(forms.Form): - email = forms.CharField(max_length=255) + email = forms.CharField(widget=forms.TextInput(attrs={'autofocus':'autofocus', 'max_length':'255'})) password = forms.CharField(widget=forms.PasswordInput) service = forms.CharField(widget=forms.HiddenInput, required=False) remember_me = forms.BooleanField(required=False, label="Keep me signed in", widget=forms.CheckboxInput(attrs={'class':'remember_me'})) -- 2.20.1