简体   繁体   中英

Zurb Foundation Abide password matching

I am trying to match passwords using Zurb foundation abide, everything works fine except for the data-equalto tag, my code is:

 .password-field
        %label
          Parola
          %small necesar
        %input#pw1{required: '', type: 'password'}
        %small.error A strong password is needed
      .password-field
        %label
          Confirma Parola
          %small necesar
        %input{required: '', type: 'password' , "data-equalto"=> 'pw1'}
        %small.error A strong password is needed or passwords do not match

I am expecting for the A strong password is needed or passwords do not match message to pop but it's not happening

The password validation pattern was removed presumably because there are varying opinions on what makes a password "strong enough."

You can define your own password field requirements however. See the abide docs .

$(document).foundation({
  abide : {
    patterns: {
      password: /^yourRegexHere/
    }
  }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM