<form id="myForm"> <button type="submit" id="submitButton">Gönder</button> </form>
document.getElementById('myForm').addEventListener('submit', function() {
document.getElementById('submitButton').disabled = true;
});Bu kodları kullanarak tıklandıktan sonra butonu disable yapabilirsin.