Name
reset
Description
Input of type reset. Used to reset all form inputs to their initial values.
Example
<form action="get" restrictions="lifted">
<input name="Title" type="text" value="Some initial value here" />
<br>
<input name="Name" type="text" value="" />
<br>
<textarea name="Description"></textarea>
<input type="reset" class="btn btn-secondary" value="Reset" />
</form>