csv-library-website/library/application/forms/borrowform.py
2024-03-31 11:51:44 +02:00

19 lines
511 B
Python

from flask_wtf import FlaskForm
from wtforms import StringField, SubmitField, validators
from wtforms.validators import Length
class BorrowForm(FlaskForm):
"""Borrow a publication form."""
borrowed = StringField(
"Fill in your name if you're going to borrow this publication.",
[
validators.InputRequired(),
Length(
min=3, message="Just so we know who is borrowing this book."
),
],
)
submit = SubmitField("Borrow")