← Go back

Start annotating today

Free account. Unlimited projects. All annotation tools at once.

Free plan

Unlimited projects and images

All export formats

COCO, YOLO, VOC, CSV — all included

Team up to 5 members

Included in free plan

Create an account

Sign up for free — no credit card required

or create an account manually
Used for login. Letters, numbers, and _ only
const pw1 = document.getElementById('id_password1'); const pw2 = document.getElementById('id_password2'); const hint = document.getElementById('pw-match'); pw2.addEventListener('input', () => { if (!pw2.value) { hint.style.display='none'; return; } hint.style.display = 'block'; if (pw1.value === pw2.value) { hint.textContent = '✓ Passwords match'; hint.style.color = 'var(--success)'; } else { hint.textContent = '✗ Passwords do not match'; hint.style.color = 'var(--danger)'; } });