I have a basic form using the form_tag helper working fine, but I want to add a cancel button, what is the syntax for doing this? I want the cancel button to appear as a button
If you mean a reset button, paste the following inside your form:
<%= button_tag "Reset", type: :reset %>
Tested it, it works fine and resets all fields in the form.