I have a password field and I was under the impression that these automatically validate with abide?
I'm using Foundation 5.
Currently I can input anything I like and it will pass validation.
I know abide is working correctly as other fields fail.
Do I need to type in a pattern for it to work? Is there a specific one for passwords?
Yeah, you need to type in a pattern, if you only set the required flag, no matter if you set a single character, it will pass. You need to add something
It will restrict to alpha-numeric passwords.
You can use the predefined patterns or create your custom patterns at will.