Go to page content

confirmation

Check if two inputs are the same.

Useful when a form requires double entry of a password or e-mail address to prevent typos.

Accepts an additional parameter “name” with the name of the other input field.

For example:

<input type="password" id="password" name="password" value="" />
<input type="password" id="password2" name="password2" value="" />
{% validate id="password" type={confirmation match="password2"} %}

Arguments:

ArgumentDescriptionExample
matchThe id of the input field that should have the same value.match="field1"
failure_messageMessage to be shown when the two fields are unequal. Defaults to "Does not match."failure_message="Please retry."

This page is part of the Zotonic documentation, which is licensed under the Apache License 2.0.