]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
forms: Remove LoginForm
authorStephen Finucane <stephen@that.guru>
Thu, 23 Apr 2020 09:46:46 +0000 (10:46 +0100)
committerStephen Finucane <stephen@that.guru>
Thu, 23 Apr 2020 09:46:46 +0000 (10:46 +0100)
This should have been removed in commit f1e089f773.

Signed-off-by: Stephen Finucane <stephen@that.guru>
patchwork/forms.py

index 5690eb011b4a6652ca6100ffafb672e440d5a97b..24322c78203356e0476cc2e81b50e18db2626d49 100644 (file)
@@ -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)