mirror of
https://github.com/lalanza808/monero.fail.git
synced 2025-03-14 21:06:27 -04:00
8 lines
208 B
Python
8 lines
208 B
Python
from flask_wtf import FlaskForm
|
|
from wtforms import StringField
|
|
from wtforms.validators import DataRequired
|
|
|
|
|
|
class SubmitNode(FlaskForm):
|
|
node_url = StringField('Node URL:', validators=[DataRequired()])
|