Hey, I have an adaptive card that asks a user to register a password. I have 1 input.text field for a user to enter their new password, and a second input.text field for the user to verify their password.
I know that I can use regex to set specific password requirements and I can set both fields as required so that the card can't be submitted until the user satisfies all the requirements, but is it possible to also make it so that both fields must match before the user can submit the card?
I have not been able to find a way to do this. I know I can try to match the fields together via a script after the card is submitted, but that's not the best user experience. I appreciate the help.