Merge branch 'i507_beaker_cache'
[mediagoblin.git] / mediagoblin / auth / forms.py
CommitLineData
8e1e744d 1# GNU MediaGoblin -- federated, autonomous media hosting
12a100e4 2# Copyright (C) 2011 MediaGoblin contributors. See AUTHORS.
24181820
CAW
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17import wtforms
18
7960ac98 19from mediagoblin.util import fake_ugettext_passthrough as _
4b1adc13 20
24181820
CAW
21
22class RegistrationForm(wtforms.Form):
23 username = wtforms.TextField(
4b1adc13 24 _('Username'),
24181820
CAW
25 [wtforms.validators.Required(),
26 wtforms.validators.Length(min=3, max=30),
6be33a77 27 wtforms.validators.Regexp(r'^\w+$')])
f5def6fe 28 password = wtforms.PasswordField(
4b1adc13 29 _('Password'),
24181820 30 [wtforms.validators.Required(),
f5def6fe 31 wtforms.validators.Length(min=6, max=30),
b8fbd817
CAW
32 wtforms.validators.EqualTo(
33 'confirm_password',
6be33a77 34 _('Passwords must match.'))])
f5def6fe 35 confirm_password = wtforms.PasswordField(
4b1adc13 36 _('Confirm password'),
04a7b06d
CAW
37 [wtforms.validators.Required()],
38 description=_(
39 u"Type it again here to make sure there are no spelling mistakes."))
24181820 40 email = wtforms.TextField(
4b1adc13 41 _('Email address'),
24181820 42 [wtforms.validators.Required(),
6be33a77 43 wtforms.validators.Email()])
a3776717
CAW
44
45
46class LoginForm(wtforms.Form):
47 username = wtforms.TextField(
4b1adc13 48 _('Username'),
a3776717
CAW
49 [wtforms.validators.Required(),
50 wtforms.validators.Regexp(r'^\w+$')])
51 password = wtforms.PasswordField(
4b1adc13 52 _('Password'),
a3776717 53 [wtforms.validators.Required()])