MS Teams 中是否有密码重置自适应卡?

Do we have a password reset adaptive card in MS Teams?

我正在创建一个密码重设流程,想知道我们是否是一张包含 'new password' 和 'confirm password' 的自适应卡。如下所示

我知道我可以使用 2 个带有 Input.text 和 style = password 的自适应卡来实现这一点。想知道我们是否还有其他事情。

您可以在单个自适应卡中使用多个输入测试盒。添加新密码和确认密码可以在单适配卡中使用两个输入框。

示例:

{
    "type": "AdaptiveCard",
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "version": "1.3",
    "body": [
        {
            "type": "TextBlock",
            "text": "Please enter your new password below:",
            "wrap": true,
            "weight": "Bolder",
            "size": "Medium"
        },
        {
            "type": "TextBlock",
            "text": "New Password*",
            "wrap": true
        },
        {
            "type": "Input.Text",
            "placeholder": "***************"
        },
        {
            "type": "TextBlock",
            "text": "Repeat New Password*",
            "wrap": true
        },
        {
            "type": "Input.Text",
            "placeholder": "***************"
        }
    ]
}