10 lines
166 B
Python
10 lines
166 B
Python
|
|
from flask_wtf import FlaskForm
|
||
|
|
from wtforms import StringField, SubmitField
|
||
|
|
from wtforms.validators import DataRequired, Length, URL
|
||
|
|
|
||
|
|
'''
|
||
|
|
|
||
|
|
Declaration of forms
|
||
|
|
|
||
|
|
'''
|