mirror of
https://github.com/logos-co/open-law.git
synced 2025-01-26 14:48:49 +00:00
9 lines
272 B
Python
9 lines
272 B
Python
from flask_wtf import FlaskForm
|
|
from wtforms import StringField, SubmitField
|
|
from wtforms.validators import DataRequired, Length
|
|
|
|
|
|
class CreateBookForm(FlaskForm):
|
|
label = StringField("Label", [DataRequired(), Length(6, 256)])
|
|
submit = SubmitField("Add new book")
|