Many users press this button several times until the confirmation message appears.
How can i disable button click after first press?
Code: Select all
<form action="" method="post" enctype="multipart/form-data">
<h3 class="box-title">Please contact me i would like to discuss about</h3>
<a href="user-proprietes.php">
<button type="button" class="btn btn-default btn-sm">
<span class="glyphicon glyphicon-arrow-left"></span>Go back
</button></a>
<div class="form-group">
<label></label>
<select class="form-control" name="satisfacere">
<option value="Very dissatisfied">Very dissatisfied</option>
<option value="dissatisfied">Dissatisfied</option>
<option value="ok">Ok</option>
<option value="Satisfied">Satiesfied</option>
<option value="Very Satisfied">Very satisfied</option>
</select>
</div>
<div class="form-group">
<label>I'm satisfied about:</label>
<textarea class="form-control" rows="3" name="lucruri" placeholder="Enter ..."></textarea>
</div>
<div class="form-group">
<input type="file" name="Filename">
</div>
<div class="form-group">
<label>Thing that you can improve:</label>
<textarea class="form-control" name="imbunatatire" rows="3" placeholder="Enter ..."></textarea>
</div>
<input type="submit" value=" Submit " name="submit"/><br />
</form>