-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.py
59 lines (42 loc) · 1.38 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
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()])
class UserAddForm(FlaskForm):
"""Form for adding users."""
username = StringField(
'Username',
validators=[InputRequired(), Length(max=30)],
)
email = StringField(
'E-mail',
validators=[InputRequired(), Email(), Length(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(UserAddForm):
"""Edit user form."""
header_image_url = StringField(
'(Optional) Header URL',
validators=[Optional(), URL(), Length(max=255)])
bio = TextAreaField('User Bio', validators=[Optional()])
class LoginForm(FlaskForm):
"""Login form."""
username = StringField(
'Username',
validators=[InputRequired(), Length(max=30)],
)
password = PasswordField(
'Password',
validators=[InputRequired(), Length(min=6, max=50)],
)
class CSRFForm(FlaskForm):
"""CSRF Form"""