Last active
July 16, 2021 19:50
-
-
Save DZuz14/0a3cde99acc7bfacb5dca16c303b2220 to your computer and use it in GitHub Desktop.
formdata
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 | |
}, | |
{ | |
"name":"location", | |
"type":"text", | |
"placeholder":"New York, NY", | |
"required":true | |
}, | |
{ | |
"name":"email", | |
"type":"email", | |
"placeholder":"[email protected]", | |
"required":true | |
}, | |
{ | |
"name":"message", | |
"type":"textarea", | |
"placeholder":"Enter your message...", | |
"required":true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment