After submitting the form, either granting or denying access, the form should not be able to be submitted again.
With jQuery, something like that should do the trick:
var submitted = false; $jQuery("#form").submit(function(evt) { if (submitted) { evt.preventDefault(); } return submitted = true; });