From: Stephen Finucane Date: Thu, 23 Apr 2020 09:46:46 +0000 (+0100) Subject: forms: Remove LoginForm X-Git-Tag: v3.0.0~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=781303bce0d8e94eae957bd3b30abe9a7849d981;p=thirdparty%2Fpatchwork.git forms: Remove LoginForm This should have been removed in commit f1e089f773. Signed-off-by: Stephen Finucane --- diff --git a/patchwork/forms.py b/patchwork/forms.py index 5690eb01..24322c78 100644 --- a/patchwork/forms.py +++ b/patchwork/forms.py @@ -45,11 +45,6 @@ class RegistrationForm(forms.Form): return self.cleaned_data -class LoginForm(forms.Form): - username = forms.CharField(max_length=30) - password = forms.CharField(widget=forms.PasswordInput) - - class EmailForm(forms.Form): email = forms.EmailField(max_length=200)