continued form command

This commit is contained in:
2024-02-25 21:10:06 +01:00
parent e337901a0e
commit 998c8cf1c7
4 changed files with 151 additions and 53 deletions

View File

@@ -1,20 +1,24 @@
[
{
"label": "This is a simple textline",
"is_paragraph": false,
"placeholder": "...and it is required!",
"value": "",
"required": true,
"min_length": 0,
"max_length": 20
},
{
"label": "This is a paragraph",
"is_paragraph": true,
"placeholder": "...and it is not required!",
"value": "We already have some input here",
"required": false,
"min_length": 0,
"max_length": 2000
}
]
{
"form_id": "DO_NOT_USE_THE_SAME_ID_TWICE",
"title": "Demo form",
"form": [
{
"label": "This is a simple textline",
"is_paragraph": false,
"placeholder": "...and it is required!",
"value": "",
"required": true,
"min_length": 0,
"max_length": 20
},
{
"label": "This is a paragraph",
"is_paragraph": true,
"placeholder": "...and it is not required!",
"value": "We already have some input here",
"required": false,
"min_length": 0,
"max_length": 2000
}
]
}