mirror of
https://github.com/lalanza808/monero.fail.git
synced 2025-07-13 08:49:21 -04:00
7 lines
208 B
Python
7 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()])
|