Forms

Input OTP

A secure input field designed for entering one-time passwords (OTP), typically split into multiple boxes for better readability, user experience, and enhanced security.

Loading...

Introduction

The Input OTP component is a versatile and customizable component that allows you to easily create an OTP input field. It offers a range of features, including customizable separators, validation, and more. Shoutout to Guilherme Rodz for creating this amazing component.

Installation

Install the component via the CLI in one command.

npx shadcn@latest add @intentui/input-otp

Manual installation

Use this approach if you prefer to install and wire up the component yourself instead of using the CLI.

npm install input-otp @heroicons/react tailwind-merge

Anatomy

import { Description } from "@/components/ui/field"
import {
  InputOTP,
  InputOTPControl,
  InputOTPGroup,
  InputOTPLabel,
  InputOTPSlot,
} from "@/components/ui/input-otp"
<InputOTP maxLength={6}>
  <InputOTPLabel>Code</InputOTPLabel>
  <InputOTPControl>
    <InputOTPGroup>
      {[...Array(6)].map((_, index) => (
        <InputOTPSlot key={index} index={index} />
      ))}
    </InputOTPGroup>
  </InputOTPControl>
  <Description>Please enter the 6-digit code we sent to your email.</Description>
</InputOTP>

Examples

Separator

To include a separator between the OTP input groups, use the InputOTPSeparator component.

Loading...

Controlled

To control the Input OTP component, utilize the value and onChange props.

Loading...

Component API

InputOTP

The InputOTP component renders the OTP input root.

PropTypeDefault
containerClassNamestring-

InputOTPControl

The InputOTPControl component wraps OTP input slots.

PropTypeDefault
classNamestring-

InputOTPGroup

The InputOTPGroup component groups OTP slots.

PropTypeDefault
classNamestring-

InputOTPSlot

The InputOTPSlot component renders one OTP input slot.

PropTypeDefault
classNamestring-
indexnumber-

InputOTPSeparator

The InputOTPSeparator component renders a separator between OTP groups.

InputOTPLabel

The InputOTPLabel component renders the OTP input label.

PropTypeDefault
classNamestring-

See the Input OTP documentation for the full API reference.

Unlock the full power of
Intent UI Design

Build modern web apps faster with 1000+ resources across components, blocks, patterns, templates, and starter kits.

Learn more