Lots of good progress getting it setup. Need to figure out templating, easier calling of functions, and cleaner routing.
This commit is contained in:
8
app/forms.py
Normal file
8
app/forms.py
Normal file
@ -0,0 +1,8 @@
|
||||
from flask_wtf import FlaskForm
|
||||
from wtforms import StringField, PasswordField, BooleanField, SubmitField
|
||||
from wtforms.validators import DataRequired
|
||||
|
||||
|
||||
class RequestForm(FlaskForm):
|
||||
apikey = StringField("Academy API Key", validators=[DataRequired()])
|
||||
submit = SubmitField("Submit")
|
||||
Reference in New Issue
Block a user