botbuilder-formflow
Version:
Form flow with subdialogs
25 lines (23 loc) • 566 B
JavaScript
module.exports = [
{
"type": "text",
"id": "login",
"prompt": "Please enter your login",
"errorPrompt": "Error, Please enter your login",
"response": "Your login is %s"
},
{
"type": "text",
"id": "password",
"prompt": "Please enter your password",
"errorPrompt": "Error, Please enter your password",
"response": "Your password is %s"
},
{
"type": "email",
"id": "email",
"prompt": "Please enter your email",
"errorPrompt": "Error, Please enter your email",
"response": "Your email is %s"
},
]