На данный момент весь кусок кода выглядит вот так
<form action="" method="post" onkeydown="if(event.keyCode==13){return false;}" >
<input type="hidden" name="do" value="payeer_pay">
<input type="hidden" name="antipovtor" value="<?=time();?>">
<table width="930" height="21px" border="0" cellpadding="0" cellspacing="0">
<tbody><tr>
<td align="center">
<br><b>Введите сумму вклада (от <?=$mindep?> до <?=$maxdep?> рублей) Кнопка "Сделать вклад" станет активной во время рестарта </b> <br> <br><input style="text-align:center;" name="m_amount" type="text" value="100" size="5" maxlength="10"><input type="submit" name="submit2" value="Сделать вклад" class="reg" </td>
</tr>
</tbody></table>
</form>
<script>
$(function() {
$('input[type="submit"]').prop('disabled', true);
$('input[name="m_amount"]').keyup(function() {
if($(this).val() != '') {
$('input[type="submit"]').prop('disabled', false);
}
});
});
</script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>
$(function(){
var date = new Date();
(function dis(){
$('input[type="submit"]').prop('disabled', date.getHours() !== 16);
setTimeout(dis,1000);
})();
});
</script>