Does anyone here know ValidForm? I'm trying to use the (fairly new) validation rule matchwith for password confirmation, but it's acting like nothing is wrong when I type in different passwords. Here's what I've tried so far....
// First password field
$objForm->addField("password1","Password", VFORM_PASSWORD,
array(
"required" => true
),
array(
"required" => "Please fill in a password"
)
);
// Second password field
$objForm->addField("password2","Repeat password", VFORM_PASSWORD,
array(
"required" => true,
"matchwith" => $objForm->getValidField("password1")->getValue()
),
array(
"type" => "Your passwords don't match",
"required" => "Please retype your password"
)
);
There's no documentation yet on this validation, so I'm not sure how it should be implemented....