Formvalidate

with one of http, https, ftpallowed protocols.

FormBuilt-in validate


Here is the list of parsley.extra validators


NameApiDescription
Min Wordsparsley-minwords="6"Validate that a field has at least 6 words.
Max Wordsparsley-maxwords="6"Validate that a field has 6 words maximum.
Range Wordsparsley-rangewords="[6,10]"Validate that a field has between 6 and 10 words.
Greater Thanparsley-greaterthan="#elem"Validate that a field's value is greater than #elem's value.
Less Thanparsley-lessthan="#elem"Validate that a field's value is lower than #elem's value.
Before dateparsley-beforedate="#elem"Validate that a field's date is before #elem's date.
After dateparsley-afterdate="#elem"Validate that a field's date is after #elem's date.
In listparsley-inlist="foo, bar, foo bar"Validates that a field's value is present within the value list. You can define the delimiter using parsley-inlist-delimiter=",". Delimiter defaults to ",".
Luhnparsley-luhn="true"Validates that a fields value passes the Luhn algorithm. Validates credit card numbers, as well as some other kinds of account numbers.
American Dateparsley-americandate="true"Validates that a value is a valid American Date. Allows for slash, dot and hyphen delimiters and condensed dates (e.g., M/D/YY MM.DD.YYYY MM-DD-YY).