Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use FlaskForm instead Form #95

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions flasktaskr-02/project/forms.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# project/forms.py


from flask_wtf import Form
from flask_wtf import FlaskForm
from wtforms import StringField, DateField, IntegerField, \
SelectField, PasswordField
from wtforms.validators import DataRequired, Length, EqualTo


class AddTaskForm(Form):
class AddTaskForm(FlaskForm):
task_id = IntegerField()
name = StringField('Task Name', validators=[DataRequired()])
due_date = DateField(
Expand All @@ -25,7 +25,7 @@ class AddTaskForm(Form):
status = IntegerField('Status')


class RegisterForm(Form):
class RegisterForm(FlaskForm):
name = StringField(
'Username',
validators=[DataRequired(), Length(min=6, max=25)]
Expand All @@ -43,7 +43,7 @@ class RegisterForm(Form):
)


class LoginForm(Form):
class LoginForm(FlaskForm):
name = StringField(
'Username',
validators=[DataRequired()]
Expand Down