mirror of
https://github.com/lalanza808/monero.fail.git
synced 2025-03-16 04:26:03 -04:00
8 lines
261 B
Python
8 lines
261 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)"})
|