password=PasswordField('Password',validators=[InputRequired(),Length(min=6,max=20,message='The password must be between 6 and 20 characters long.')])
password_reenter=PasswordField('Re-Enter Password',validators=[InputRequired(),Length(min=6,max=20,message='The password must be between 6 and 20 characters long.'),EqualTo('password',message='Passwords do not match.')])
password=PasswordField('Password',validators=[InputRequired(),Length(min=6,max=20,message='The password must be between 6 and 20 characters long.')])
password_reenter=PasswordField('Re-Enter Password',validators=[InputRequired(),Length(min=6,max=20,message='The password must be between 6 and 20 characters long.'),EqualTo('password',message='Passwords do not match.')])
password=PasswordField('Password (Optional)',validators=[Optional(),Length(min=6,max=20,message='The password must be between 6 and 20 characters long.')])
password=PasswordField('Confirm Your Password',validators=[InputRequired(),Length(min=6,max=20,message='The password must be between 6 and 20 characters long.')])
confirm_password=PasswordField('Confirm Your Password',validators=[InputRequired(),Length(min=6,max=20,message='The password must be between 6 and 20 characters long.')])
password=PasswordField('Change Password',validators=[Optional(),Length(min=6,max=20,message='The password must be between 6 and 20 characters long.')])
confirm_password=PasswordField('Current Password',validators=[InputRequired(),Length(min=6,max=20,message='The password must be between 6 and 20 characters long.')])
password=PasswordField('Change Password',validators=[Optional(),Length(min=6,max=20,message='The password must be between 6 and 20 characters long.')])