create an adaptive card with a title at the top, a paragraph, 2 input field (first name, last name), a submit button, and a smaller fine print at the bottom
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.3",
"body": [
{
"type": "TextBlock",
"text": "User Information",
"weight": "Bolder",
"size": "Large"
},
{
"type": "TextBlock",
"text": "Please enter your first and last name.",
"wrap": true
},
{
"type": "Input.Text",
"id": "firstName",
"placeholder": "First Name"
},
{
"type": "Input.Text",
"id": "lastName",
"placeholder": "Last Name"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
},
{
"type": "TextBlock",
"text": "By submitting, you agree to our terms and conditions.",
"wrap": true,
"size": "Small",
"isSubtle": true
}
]
}
WarrenBelz
146,743
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
66,079
Most Valuable Professional