Skip to content

Instantly share code, notes, and snippets.

@DeeJayTC
Created August 7, 2020 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DeeJayTC/d34ddcb48673c61c322493be562a0f76 to your computer and use it in GitHub Desktop.
Save DeeJayTC/d34ddcb48673c61c322493be562a0f76 to your computer and use it in GitHub Desktop.
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.2",
"body": [
{
"type": "TextBlock",
"text": "Your Family Name"
},
{
"type": "Input.Text",
"placeholder": "Your family name...",
"label": "Family Name",
"isRequired": true,
"errorMessage": "This field is required",
"id": "familyname"
},
{
"type": "TextBlock",
"text": "Your Name"
},
{
"type": "Input.Text",
"placeholder": "Placeholder text",
"label": "Your first name...",
"id": "firstname"
},
{
"type": "TextBlock",
"text": "Date of Birth"
},
{
"type": "Input.Date",
"isRequired": true
},
{
"type": "TextBlock",
"text": "Email"
},
{
"type": "Input.Text",
"placeholder": "email@domain.com",
"id": "email"
},
{
"type": "TextBlock",
"text": "Password"
},
{
"type": "Input.Text",
"placeholder": "Placeholder text",
"id": "pwd"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Sign Up"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment