csv-library-website/library/application/forms/borrowform.py

19 lines
511 B
Python
Raw Permalink Normal View History

2024-03-30 18:09:04 +01:00
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")