You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from wtforms import StringField, PasswordField, SubmitField
from wtforms.validators import DataRequired,Email,Length
class SignupForm(FlaskForm):
first_name = StringField("First_Name",validators=[DataRequired("Please Enter Your First Name")])
last_name = StringField("Last_Name",validators=[DataRequired("Please Enter Your Last Name")])
email = StringField("Email",validators=[DataRequired,Email("Please Enter Your Email")])
password = PasswordField("Password",validators=[DataRequired("Please Enter Your Password"),Length(min=6,message="Password Must Be minimum Characters")])