Is there a reset_button()?

You can reuse the submit button code:

print str_replace( 
    '"submit"', 
    '"reset"', 
    get_submit_button( 'Reset' ) 
);

This should create a button with the regular style for submit buttons. The attributes name, type and id will be set to reset. Not tested. 🙂

tech