Files
flask_url_shortener/tiny0/forms.py
T
2020-07-18 13:10:03 +00:00

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
'''