Last active
July 16, 2021 19:59
-
-
Save DZuz14/88d50e2795c1ec3a362739f623652528 to your computer and use it in GitHub Desktop.
autoform 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"success":"Hooray! your form was submitted.", | |
"fields":[ | |
{ | |
"name":"name", | |
"type":"text", | |
"placeholder":"Dana Scully", | |
"required":true, | |
"value": "" | |
}, | |
{ | |
"name":"location", | |
"type":"text", | |
"placeholder":"New York, NY", | |
"required":true, | |
"value": "" | |
}, | |
{ | |
"name":"email", | |
"type":"email", | |
"placeholder":"[email protected]", | |
"required":true, | |
"value": "" | |
}, | |
{ | |
"name":"message", | |
"type":"textarea", | |
"placeholder":"Enter your message...", | |
"required":true, | |
"value": "" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment