Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
thedaviddias avatar

Code Confirmation

  • 2 installs
  • 228 repo stars
  • Updated June 30, 2026
  • thedaviddias/ux-patterns-for-developers

Guides building a segmented OTP input where each character has its own box, used for 2FA, email verification, and password-reset codes.

About

Describes the code confirmation (OTP) input pattern with a segmented per-character layout for entering short verification codes. A developer uses it when implementing 2FA, email verification, or password-reset code entry.

  • Segmented layout gives one box per character to reduce transcription errors
  • Best for short 4-8 character codes, not long passwords or free-form text

Code Confirmation by the numbers

  • 2 all-time installs (skills.sh)
  • Ranked #1,564 of 1,880 Design & UI/UX skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/thedaviddias/ux-patterns-for-developers --skill code-confirmation

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2
repo stars228
Last updatedJune 30, 2026
Repositorythedaviddias/ux-patterns-for-developers

What it does

Guides building a segmented OTP input where each character has its own box, used for 2FA, email verification, and password-reset codes.

Files

SKILL.mdMarkdownGitHub ↗

Code Confirmation

Verify codes with segmented input

What it solves

A Code Confirmation (also called an OTP input or verification code input) is a specialized form component that allows users to enter short numeric or alphanumeric codes — typically 4–8 characters — sent via SMS, email, or authenticator app to verify identity. The defining characteristic is the segmented layout: each character occupies its own individual input box, providing a clear visual structure that guides users digit-by-digit and reduces transcription errors.

When to use

  • Two-factor authentication (2FA) – SMS or TOTP codes used alongside password login.
  • Email verification – Confirm account ownership after registration.
  • Password reset flows – Short codes sent via SMS or email to authorize resets.
  • Transaction confirmation – PIN or code required before sensitive financial actions.
  • Access codes – Short invite or gift codes entered to unlock content.

When to avoid

  • Long passwords or passphrases – A standard password field is better; segmented inputs are meant for short, structured codes.
  • Free-form text entry – Use a text field instead.
  • When the code length is unknown or variable – Use a standard single-line input.
  • Codes longer than 8 digits – Cognitive load increases significantly; consider a text field with masking.

Implementation workflow

1. Confirm the pattern matches the problem and constraints before copying the example. 2. Start from the anatomy and examples in references/pattern.md, then choose the smallest viable variation. 3. Apply accessibility, performance, and interaction guardrails before layering visual polish. 4. Use the testing guidance to verify behavior across keyboard, screen reader, responsive, and failure scenarios.

Accessibility guardrails

Keyboard Interaction Pattern

KeyAction
0–9 / A–ZEnters a digit or character and advances focus to the next input
BackspaceClears current digit; if empty, moves focus to previous input
DeleteClears current digit without moving focus
Arrow LeftMoves focus to the previous digit input
Arrow RightMoves focus to the next digit input
TabMoves focus to the next focusable element outside the group
Shift + TabMoves focus to the previous focusable element outside the group

Performance guardrails

  • Initial render: < 50ms for digit group appearance
  • Auto-advance response: < 16ms (single frame) after digit entry
  • Paste distribution: < 50ms to fill all digits from clipboard
  • Error state transition: < 200ms including shake animation
  • Memory usage: < 2KB per OTP component instance

Common mistakes

Using type="number" for Digit Inputs

The Problem: <input type="number"> accepts e, +, - and shows stepper arrows in some browsers. It also returns an empty string for checkValidity on certain non-numeric entries.

<!-- Bad -->
<input type="number" min="0" max="9" class="otp-digit" />

How to Fix It? Use type="text" with inputmode="numeric" and pattern="[0-9]".

<!-- Good -->
<input type="text" inputmode="numeric" pattern="[0-9]" maxlength="1" class="otp-digit" />

Blocking Paste Events

The Problem: Disabling paste breaks SMS autofill and forces users to type digit-by-digit from a copied code, causing significant frustration.

// Bad
input.addEventListener('paste', (e) => e.preventDefault());

How to Fix It? Handle paste to distribute characters across boxes.

// Good: distribute pasted text across all digit inputs
container.addEventListener('paste', (e) => {
  e.preventDefault();
  const text = e.clipboardData.getData('text').replace(/\D/g, '');
  const digits = inputs; // NodeList of digit inputs
  [...text].slice(0, digits.length).forEach((char, i) => {
    digits[i].value = char;
  });
  // Move focus to the last filled digit or the next empty one
  const lastFilled = Math.min(text.length, digits.length) - 1;
  digits[lastFilled]?.focus();
});

No Backspace Navigation

The Problem: Users who mistype a digit expect Backspace to clear it and return focus to the previous box. Without this, they're stranded on an empty box.

How to Fix It? Listen for keydown and navigate backward when the input is already empty.

input.addEventListener('keydown', (e) => {
  if (e.key === 'Backspace' && input.value === '') {
    const prev = getPreviousInput(input);
    if (prev) {
      prev.value = '';
      prev.focus();
    }
  }
});

Related patterns

  • https://uxpatterns.dev/patterns/forms/text-field

---

For full implementation detail, examples, and testing notes, see references/pattern.md.

Pattern page: https://uxpatterns.dev/patterns/forms/code-confirmation

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.