You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
500 B
12 lines
500 B
from flask_wtf import FlaskForm
|
|
from flask_wtf.file import FileField, FileAllowed
|
|
from wtforms import StringField, SubmitField, URLField, IntegerField, SelectField
|
|
from wtforms.validators import DataRequired, Length, Email, EqualTo, ValidationError
|
|
import minibase.blueprints.company.utils as companyUtils
|
|
|
|
|
|
class LocationForm(FlaskForm):
|
|
country = SelectField('Country', validators=[DataRequired()])
|
|
city = SelectField('City', validators=[DataRequired()])
|
|
submit = SubmitField('Update')
|