Is there a way you can make a text input field required?
Yes. If your text field was:
<input type="text" name="VAR000">
Then add the following line to the HTML of your button:
<input type="hidden" name="VAR000_undefined" value="ERROR: Please enter a value.">
|