in reply to FormFu email doubling

Using HTML::FormFu::Constraint::Email to check for well-formedness:
#!/usr/bin/perl use strict; use warnings; use HTML::FormFu::Constraint::Email; print (Email::Valid->address('somebody@somewhere.com') ? "yes\n": "no\ +n");

Replies are listed 'Best First'.
Re^2: FormFu email doubling
by John M. Dlugosz (Monsignor) on Mar 21, 2011 at 08:14 UTC
    Indeed I did that on the first email field.

    My question is how do I make it check that the second "repeat email" field is the same as the first "email" field?