From 02f583590f9e4d26747fb699940f197b296d3f09 Mon Sep 17 00:00:00 2001 From: deyk Date: Fri, 13 Apr 2012 16:03:57 -0700 Subject: [PATCH] Whoops, we really don't want to use the Authentication Form. --- cas_provider/forms.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cas_provider/forms.py b/cas_provider/forms.py index 8ec7a22..662e517 100644 --- a/cas_provider/forms.py +++ b/cas_provider/forms.py @@ -1,14 +1,13 @@ from django import forms from django.conf import settings from django.contrib.auth import authenticate -from django.contrib.auth.forms import AuthenticationForm from django.forms import ValidationError from django.utils.translation import ugettext_lazy as _ from models import LoginTicket import datetime -class LoginForm(AuthenticationForm): +class LoginForm(forms.Form): email = forms.CharField(widget=forms.TextInput(attrs={'autofocus': 'autofocus', 'max_length': '255'})) password = forms.CharField(widget=forms.PasswordInput) -- 2.20.1