From: deyk Date: Fri, 13 Apr 2012 23:03:57 +0000 (-0700) Subject: Whoops, we really don't want to use the Authentication Form. X-Git-Tag: 22.4~31 X-Git-Url: https://git.mdrn.pl/django-cas-provider.git/commitdiff_plain/02f583590f9e4d26747fb699940f197b296d3f09 Whoops, we really don't want to use the Authentication Form. --- 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)