when user click add button twice, from get submitted twice with same dat
You could notify the user that he drinks too much coffee but the best is to disabled the button with javascript, for example like so:
$("#btnADD").on('click', function(btn) { btn.disabled = true; });