Reset Buttons
Reset buttons also appear as push buttons. The effect they have on the form, however, is to reset the contents of the form to its initial state of either blank fields or default values. Create Reset buttons by using the INPUT tag with TYPE reset, as shown here:
<INPUT TYPE=reset VALUE='Clear'>
Using CGI::Form, call the method reset, in the following manner:
$q->reset( -value=>'Clear' );