mirror of
https://github.com/logos-co/open-law.git
synced 2025-02-09 05:24:23 +00:00
9 lines
235 B
Python
9 lines
235 B
Python
from flask_wtf import FlaskForm
|
|
from wtforms import StringField
|
|
from wtforms.validators import DataRequired
|
|
|
|
|
|
class ForkBookForm(FlaskForm):
|
|
label = StringField("Fork Label", [DataRequired()])
|
|
about = StringField("Fork About")
|