summaryrefslogtreecommitdiffstats
path: root/accounts/forms.py
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2016-01-25 01:50:44 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2016-02-02 04:22:17 +0100
commitca5e2f13aa205f71f9cb95fc0f05b2df8b03fc5b (patch)
treea5bbdfce5a2d7bdccc4439e81f72833dc6523b1f /accounts/forms.py
parent0f5553f09a8297738430e4cbc50e3bff48895ad6 (diff)
downloadweb-ca5e2f13aa205f71f9cb95fc0f05b2df8b03fc5b.tar.gz
web-ca5e2f13aa205f71f9cb95fc0f05b2df8b03fc5b.tar.bz2
web-ca5e2f13aa205f71f9cb95fc0f05b2df8b03fc5b.zip
Create new login blueprint
The login and logout view are now in the login blueprint.
Diffstat (limited to 'accounts/forms.py')
-rw-r--r--accounts/forms.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/accounts/forms.py b/accounts/forms.py
index bcbe747..bdef0ed 100644
--- a/accounts/forms.py
+++ b/accounts/forms.py
@@ -65,11 +65,6 @@ class RegisterCompleteForm(Form):
# n.b. this form is also used in lost_password_complete
-class LoginForm(Form):
- username = TextField(u'Benutzername')
- password = PasswordField('Passwort', [validators.Required()])
-
-
class LostPasswordForm(Form):
username_or_mail = TextField(u'Benutzername oder E-Mail')