-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforms.py
42 lines (34 loc) · 1.32 KB
/
forms.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from flask_wtf import Form
from wtforms import TextField, PasswordField
from wtforms.validators import DataRequired, EqualTo, Length
# Set your classes here.
class RegisterForm(Form):
name = TextField(
'Username', validators=[DataRequired(), Length(min=6, max=25)]
)
email = TextField(
'Email', validators=[DataRequired(), Length(min=6, max=40)]
)
password = PasswordField(
'Password', validators=[DataRequired(), Length(min=6, max=40)]
)
confirm = PasswordField(
'Repeat Password',
[DataRequired(),
EqualTo('password', message='Passwords must match')]
)
class LoginForm(Form):
name = TextField('Username', [DataRequired()])
password = PasswordField('Password', [DataRequired()])
class SearchForm(Form):
search = TextField('Search', [DataRequired()])
class ForgotForm(Form):
email = TextField(
'Email', validators=[DataRequired(), Length(min=6, max=40)]
)
class ProofPointForm(Form):
customerCompany = TextField('customerCompany', [DataRequired()])
customerIndustry = TextField('customerIndustry', [DataRequired()])
customerProject = TextField('customerProject', [DataRequired()])
customerProjectDescription = TextField('customerProjectDescription', [DataRequired()])
useCase = TextField('useCase', [DataRequired()])