-
Notifications
You must be signed in to change notification settings - Fork 0
/
forms.py
85 lines (62 loc) · 1.94 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
from flask_wtf import FlaskForm
from wtforms import StringField, PasswordField, TextAreaField
from wtforms.validators import InputRequired, Email, Length, URL, Optional
class MessageForm(FlaskForm):
"""Form for adding/editing messages."""
text = TextAreaField('text', validators=[InputRequired(), Length(min=1,max=140)])
class UserAddForm(FlaskForm):
"""Form for adding users."""
username = StringField(
'Username',
validators=[InputRequired(), Length(min=1,max=30)],
)
email = StringField(
'E-mail',
validators=[InputRequired(), Email(), Length(min=1,max=50)],
)
password = PasswordField(
'Password',
validators=[InputRequired(), Length(min=6, max=50)],
)
image_url = StringField(
'(Optional) Image URL',
validators=[Optional(), URL(), Length(max=255)]
)
class UserEditForm(FlaskForm):
"""Form for adding users."""
username = StringField(
'Username',
validators=[InputRequired(), Length(max=30)],
)
email = StringField(
'E-mail',
validators=[InputRequired(), Email(), Length(max=50)],
)
image_url = StringField(
'(Optional) Image URL',
validators=[Optional(), URL(), Length(max=255)]
)
header_image_url = StringField(
'(Optional) Header Image URL',
validators=[Optional(), URL(), Length(max=255)]
)
bio = TextAreaField(
'(Optional) Bio',
validators=[Optional()]
)
password = PasswordField(
'Password',
validators=[InputRequired(), Length(min=6, max=50)],
)
class LoginForm(FlaskForm):
"""Login form."""
username = StringField(
'Username',
validators=[InputRequired(), Length(max=30)],
)
password = PasswordField(
'Password',
validators=[InputRequired(), Length(min=6, max=50)],
)
class CSRFProtectForm(FlaskForm):
"""Form just for CSRF Protection"""