mirror of
https://github.com/StefBuwalda/ProjectIOT.git
synced 2025-10-30 11:19:57 +00:00
9 lines
290 B
Python
9 lines
290 B
Python
from flask_wtf import FlaskForm
|
|
from wtforms.validators import DataRequired
|
|
from wtforms import StringField, SubmitField
|
|
from application import db
|
|
|
|
class npForm(FlaskForm):
|
|
numberplate = StringField('add a numberplate', validators=[DataRequired()])
|
|
submit = SubmitField('Submit')
|