diff --git a/modules/turnero/views/kiosko.php b/modules/turnero/views/kiosko.php index 4d6d1d3..de803b9 100644 --- a/modules/turnero/views/kiosko.php +++ b/modules/turnero/views/kiosko.php @@ -408,6 +408,8 @@ unset($p); .np-btn:active { background: var(--brand-light); transform: scale(.94); } .np-clear { color: #ef4444; border-color: #fca5a5; } .np-back { color: #64748b; } + .np-ok { background: var(--brand); color: #fff; border-color: var(--brand); + font-size: 1.15rem; padding: 1.1rem; } /* ── Responsive ── */ @media (min-height: 800px) { @@ -518,20 +520,14 @@ unset($p); + -
- - -
Para recibir notificaciones de su turno
-
- + + + @@ -752,7 +748,10 @@ unset($p); e.preventDefault(); const k = btn.dataset.k; const inp = _inpCedula; - if (k === 'C') { + if (k === 'OK') { + confirmarTurno(); + return; + } else if (k === 'C') { inp.value = ''; } else if (k === '⌫') { inp.value = inp.value.slice(0, -1);