Commit 0d8aafd7 authored by Mahmoud Aglan's avatar Mahmoud Aglan

fix(members): add novalidate to retroactive wizard form to suppress browser validation errors

Native HTML5 constraint validation fires on hidden fields (display:none panels),
causing "not focusable" errors on inst_months. Custom validateStep() handles all
validation — novalidate disables the duplicate browser check.
Co-Authored-By: 's avatarClaude Sonnet 4.6 <noreply@anthropic.com>
parent bb11f974
......@@ -48,7 +48,7 @@ if ($wizardAlerts): ?>
</div>
</div>
<form id="retroForm" action="/members/retroactive-wizard" method="POST">
<form id="retroForm" action="/members/retroactive-wizard" method="POST" novalidate>
<?= csrf_field() ?>
<!-- ═══════════════ STEP 1: Basic Info ═══════════════ -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment