Logins seem to work.
[mediagoblin.git] / mediagoblin / auth / forms.py
CommitLineData
24181820
CAW
1# GNU Mediagoblin -- federated, autonomous media hosting
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
19
20class RegistrationForm(wtforms.Form):
21 username = wtforms.TextField(
22 'Username',
23 [wtforms.validators.Required(),
24 wtforms.validators.Length(min=3, max=30),
25 wtforms.validators.Regexp(r'^\w+$')])
f5def6fe 26 password = wtforms.PasswordField(
24181820
CAW
27 'Password',
28 [wtforms.validators.Required(),
f5def6fe 29 wtforms.validators.Length(min=6, max=30),
24181820 30 wtforms.validators.EqualTo('confirm_password')])
f5def6fe 31 confirm_password = wtforms.PasswordField(
24181820
CAW
32 'Confirm password',
33 [wtforms.validators.Required()])
34 email = wtforms.TextField(
35 'Email address',
36 [wtforms.validators.Required(),
37 wtforms.validators.Email()])
a3776717
CAW
38
39
40class LoginForm(wtforms.Form):
41 username = wtforms.TextField(
42 'Username',
43 [wtforms.validators.Required(),
44 wtforms.validators.Regexp(r'^\w+$')])
45 password = wtforms.PasswordField(
46 'Password',
47 [wtforms.validators.Required()])