Ahm... ok....
u need to edit your
signupadult and
signupadult templates
find line starts with:
replace the whole (!) line with:
Code:
<form action="register.php" method="post" name=register>
find line:
Code:
<input type="submit" class="bginput" value="Agree">
replace with:
Code:
<input type="submit" name="Submit" class="bginput" value="Agree">
after:
add
Code:
<script>
document.forms.register.Submit.disabled =true;
window.setTimeout("Timer()", 15000);
function Timer() {
document.forms.register.Submit.disabled =false;
};
</script>
delay here is set to 15 seconds.....
Demo
here