Skip to content

Instantly share code, notes, and snippets.

@dinotrnka
Last active June 11, 2020 19:08
Show Gist options
  • Save dinotrnka/3ef2d23e9bd76d6abe5b05e285964c52 to your computer and use it in GitHub Desktop.
Save dinotrnka/3ef2d23e9bd76d6abe5b05e285964c52 to your computer and use it in GitHub Desktop.
{
"items": [
{
"id": "item-id-1",
"type": "username",
"placeholder": "Please enter your username",
"required:": true,
"minLength": 3,
"maxLength": 15
},
{
"id": "item-id-2",
"type": "password",
"required:": true,
"placeholder": "Please enter your password",
"minLength": 8,
"maxLength": 64
},
{
"id": "item-id-3",
"type": "birthday",
"required:": false,
"placeholder": "Please enter your birthday",
"minDate": "1900-01-01",
"maxDate": "2020-01-01"
},
{
"id": "item-id-4",
"type": "gender",
"required:": false,
"placeholder": "Please enter your gender",
"options": [
"male",
"female"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment