Open knackrack615 opened 9 years ago
You should disable the submit button after its being click to prevent paste spam
This can be done very easely by changing line 90 on /themes/bootstrap/index.html to the following
<input name="submit" type="submit" value="Submit" id="submit" class="btn btn-primary" onclick="kamos()" />
and add at the top of the file this
function kamos(){ $('#submit').hide(); }
Easy but effective :)
You should disable the submit button after its being click to prevent paste spam
This can be done very easely by changing line 90 on /themes/bootstrap/index.html to the following
and add at the top of the file this
Easy but effective :)