Created
November 16, 2012 03:36
-
-
Save spoatacus/4083796 to your computer and use it in GitHub Desktop.
Form Layout
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
{ | |
"fieldset": [ | |
{ | |
"label": "Email", | |
"inputs": [ | |
{ | |
"name": "email", | |
"placeholder": "Email", | |
"size": "normal" | |
} | |
], | |
"help": "Your email address" | |
}, | |
{ | |
"label": "Name", | |
"inputs": [ | |
{ | |
"name": "first_name", | |
"placeholder": "First", | |
"size": "small" | |
}, | |
{ | |
"name": "last_name", | |
"placeholder": "Last", | |
"size": "small" | |
} | |
] | |
}, | |
{ | |
"label": "Address 1", | |
"inputs": { | |
"name": "address2", | |
"placeholder": "Address 1", | |
"size": "large" | |
} | |
}, | |
{ | |
"label": "Address 2", | |
"field": { | |
"name": "address2", | |
"placeholder": "Address 2", | |
"size": "large" | |
}, | |
"help": "(Apt, Suite, Floor)" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment