ลงทะเบียนพนักงานใหม่

*ต้องขึ้นต้นด้วย C และตามด้วยเลข 4 ตัว
กลับไปหน้าเข้าสู่ระบบ
document.getElementById('regForm').addEventListener('submit', async (e) => { e.preventDefault(); const pid = document.getElementById('payroll_id').value.toUpperCase(); // ตรวจสอบรูปแบบ Cxxxx const regex = /^C\d{4}$/; if (!regex.test(pid)) { alert("รหัสพนักงานต้องเป็นตัว C ตามด้วยเลข 4 หลัก (เช่น C1404)"); return; } const data = { first_name: document.getElementById('first_name').value, last_name: document.getElementById('last_name').value, payroll_id: pid, phone: document.getElementById('phone').value }; try { const res = await fetch('/api/register/', { method: 'POST', body: JSON.stringify(data) }); const result = await res.json(); if (result.status === 'success') { alert('✅ ลงทะเบียนสำเร็จ!'); window.location.href = '/login/'; } else { alert('❌ ' + result.message); } } catch(err) { alert('เกิดข้อผิดพลาดในการเชื่อมต่อ'); } });