aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/edit/forms.py
diff options
context:
space:
mode:
authorRodney Ewing <ewing.rj@gmail.com>2013-07-08 17:17:12 -0700
committerRodney Ewing <ewing.rj@gmail.com>2013-08-16 10:28:48 -0700
commitaf665c4eb9dfb53ef9ac28567f7f3806ed313093 (patch)
treee82d356f4c89cb04cb4b5c469ba45a3685e1eb56 /mediagoblin/edit/forms.py
parentaeae6cc29099c4bea84bbfd006615104ba719b1e (diff)
downloadmediagoblin-af665c4eb9dfb53ef9ac28567f7f3806ed313093.tar.lz
mediagoblin-af665c4eb9dfb53ef9ac28567f7f3806ed313093.tar.xz
mediagoblin-af665c4eb9dfb53ef9ac28567f7f3806ed313093.zip
moved change_pass to basic_auth and fixed some typos with the moving of forgot pass
Diffstat (limited to 'mediagoblin/edit/forms.py')
-rw-r--r--mediagoblin/edit/forms.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py
index 85c243a0..30dce151 100644
--- a/mediagoblin/edit/forms.py
+++ b/mediagoblin/edit/forms.py
@@ -98,16 +98,3 @@ class EditCollectionForm(wtforms.Form):
description=_(
"The title part of this collection's address. "
"You usually don't need to change this."))
-
-
-class ChangePassForm(wtforms.Form):
- old_password = wtforms.PasswordField(
- _('Old password'),
- [wtforms.validators.Required()],
- description=_(
- "Enter your old password to prove you own this account."))
- new_password = wtforms.PasswordField(
- _('New password'),
- [wtforms.validators.Required(),
- wtforms.validators.Length(min=6, max=30)],
- id="password")