You can use simple jQuery on Cancel button click to clear the form
$("#btnCancel").click(function(){
$("#form")[0].reset();
});
Or you can add a new button with type reset or change Cancel button type to reset if you are not doing any other operation with Cancel button
<button type="reset" value="Cancel">Cancel</button>