// 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....
Edited by quasiman, 07 January 2013 - 04:12 PM.












