summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2020-04-23 10:46:46 +0100
committerStephen Finucane <stephen@that.guru>2020-04-23 10:46:46 +0100
commit781303bce0d8e94eae957bd3b30abe9a7849d981 (patch)
treea75a481cda8bcddad6dba42ac110580184ad384f
parentd89c20b8072b646adc0cb9cc74c9678fc65039d4 (diff)
downloadpatchwork-781303bce0d8e94eae957bd3b30abe9a7849d981.tar
patchwork-781303bce0d8e94eae957bd3b30abe9a7849d981.tar.gz
forms: Remove LoginForm
This should have been removed in commit f1e089f773. Signed-off-by: Stephen Finucane <stephen@that.guru>
-rw-r--r--patchwork/forms.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/patchwork/forms.py b/patchwork/forms.py
index 5690eb0..24322c7 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)