The ResetFormInput class represents a reset button input type in an HTML form.
The following code example shows you how to create a ResetFormInput object:
ResetFormInput reset = new ResetFormInput();
reset.setValue("Reset");
System.out.println(reset.getTag());
<input type="reset" value="Reset" />