JQuery kullanıyorsan aşağıdaki kod kümesini ekle
$(function(){
  $('form input').on('keypress', function(e) {
      return e.which !== 13;
  });
});