I'm using Zurb Foundation and I'm trying to make custom password validation using abide validation.
I need to make sure the password has at least 1 uppercase, 1 lowercase, 1 number, 1 special character and this is the regex I'm using /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[^\da-zA-Z]).{8,15}$/
which I got from this accepted answer here.
But I can't submit the form, although I'm fulfilling the conditions for the password.
This is a jsfiddle link, although I couldn't add foundation.js properly as External Resource, I get the same behavior I'm getting on my local machine.
So what is it that I'm missing.