Merge branch 'mergeme'
[mediagoblin.git] / mediagoblin / auth / forms.py
CommitLineData
8e1e744d 1# GNU MediaGoblin -- federated, autonomous media hosting
24181820
CAW
2# Copyright (C) 2011 Free Software Foundation, Inc
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
4b1adc13
CAW
19from mediagoblin.util import pass_to_ugettext as _
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),
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',
4b1adc13 34 _('Passwords must match.'))])
f5def6fe 35 confirm_password = wtforms.PasswordField(
4b1adc13 36 _('Confirm password'),
24181820
CAW
37 [wtforms.validators.Required()])
38 email = wtforms.TextField(
4b1adc13 39 _('Email address'),
24181820
CAW
40 [wtforms.validators.Required(),
41 wtforms.validators.Email()])
a3776717
CAW
42
43
44class LoginForm(wtforms.Form):
45 username = wtforms.TextField(
4b1adc13 46 _('Username'),
a3776717
CAW
47 [wtforms.validators.Required(),
48 wtforms.validators.Regexp(r'^\w+$')])
49 password = wtforms.PasswordField(
4b1adc13 50 _('Password'),
a3776717 51 [wtforms.validators.Required()])