Kullanım Koşullarını Kabul etme kodu
Dış Dosyası
function checkCheckBox(f) {
if (f.agree.checked == false) {
alert('Please check the box to continue.');
return false;
} else
return true;
}
Head Dosyası
<script type="text/javascript" src="acceptTerms"></script>
Body Dosyası
<form action="yourFormScript.php" method="POST" onsubmit="return checkCheckBox(this)">
I accept: <input type="checkbox" value="0" name="agree">
<input type="submit" value="Continue Order">
<input type="button" value="Exit" onclick="document.location.href='/index.html';">
</form>