proof of concept
This commit is contained in:
9
app/main/forms.py
Normal file
9
app/main/forms.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from flask_wtf import FlaskForm
|
||||
from wtforms import StringField, SubmitField
|
||||
import wtforms.validators
|
||||
from wtforms.validators import Length, MacAddress, IPAddress, DataRequired, EqualTo
|
||||
|
||||
|
||||
class Ripper(FlaskForm):
|
||||
search = StringField('Search')
|
||||
submit = SubmitField('Download')
|
||||
Reference in New Issue
Block a user