Magento 2 – Validate Email Confirmation Field with Actual Email

confirmationemailmagento-2.1magento2validation

I have added confirm email field in my contact form. Now I want to validate it. How can I validate this email confirmation field with the actual email field?

enter image description here

Best Answer

On the second reenter email address input your need to add a paremeter equalTo:'#email' to data-validate, Where email is your email address input field's id attribute value.

data-validate="{required:true, 'validate-email':true,equalTo:'#email'}"
Related Topic