508. Updates COPYING file; adds translations bit
[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
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),
04a7b06d
CAW
27 wtforms.validators.Regexp(r'^\w+$')],
28 description=_(
29 u"This is the name other users will identify you with."))
f5def6fe 30 password = wtforms.PasswordField(
4b1adc13 31 _('Password'),
24181820 32 [wtforms.validators.Required(),
f5def6fe 33 wtforms.validators.Length(min=6, max=30),
b8fbd817
CAW
34 wtforms.validators.EqualTo(
35 'confirm_password',
04a7b06d
CAW
36 _('Passwords must match.'))],
37 description=_(
38 u"Try to use a strong password!"))
f5def6fe 39 confirm_password = wtforms.PasswordField(
4b1adc13 40 _('Confirm password'),
04a7b06d
CAW
41 [wtforms.validators.Required()],
42 description=_(
43 u"Type it again here to make sure there are no spelling mistakes."))
24181820 44 email = wtforms.TextField(
4b1adc13 45 _('Email address'),
24181820 46 [wtforms.validators.Required(),
04a7b06d
CAW
47 wtforms.validators.Email()],
48 description=_(
49 u"Your email will never be published."))
a3776717
CAW
50
51
52class LoginForm(wtforms.Form):
53 username = wtforms.TextField(
4b1adc13 54 _('Username'),
a3776717
CAW
55 [wtforms.validators.Required(),
56 wtforms.validators.Regexp(r'^\w+$')])
57 password = wtforms.PasswordField(
4b1adc13 58 _('Password'),
a3776717 59 [wtforms.validators.Required()])