mirror of
https://github.com/lalanza808/monero.fail.git
synced 2025-03-14 20:26:34 -04:00
12 lines
292 B
Python
12 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)"},
|
|
)
|