Password Confirmation In Angular 2
I am trying to check whether the two passwords are equal. I am not getting any error message when there are not but i am not getting the error message 'Password must match'. Below
Solution 1:
The issue is with these lines in your template:
formName.get('confirmpassword').hasError('mismatchedPasswords')
You're applying the validator to the group formName
, but checking for the error on the confirmpassword
formControl.
Try using this in the two places where you check for mismatchedPasswords
in your template.
formName.hasError('mismatchedPasswords')
Post a Comment for "Password Confirmation In Angular 2"