mirror of
https://github.com/StefBuwalda/ProjectIOT.git
synced 2025-10-30 03:09:58 +00:00
11 lines
278 B
Python
11 lines
278 B
Python
from flask_wtf import FlaskForm
|
|
from wtforms.validators import DataRequired
|
|
from wtforms import StringField, SubmitField
|
|
|
|
|
|
class npForm(FlaskForm):
|
|
numberplate = StringField(
|
|
"Insert plate here:", validators=[DataRequired()]
|
|
)
|
|
submit = SubmitField("Submit")
|