mirror of
https://github.com/lalanza808/monero.fail.git
synced 2025-07-10 21:19:27 -04:00
11 lines
292 B
Python
11 lines
292 B
Python
from flask_wtf import FlaskForm
|
|
from wtforms import StringField
|
|
from wtforms.validators import DataRequired
|
|
|
|
|
|
class SubmitNode(FlaskForm):
|
|
node_url = StringField(
|
|
"",
|
|
validators=[DataRequired()],
|
|
render_kw={"placeholder": "Node URL (http://xxx.tld:18081)"},
|
|
)
|