Input OTPA one-time-password box input. Preview Code ⧉ Copyimport { BuiInputOtp } from 'ng-blatui'; <bui-input-otp [(value)]="code" [maxlength]="6" />Four digits Preview Code ⧉ Copy<bui-input-otp [maxlength]="4" ariaLabel="4-digit code" />Alphanumeric Preview Code ⧉ Copy<bui-input-otp [maxlength]="6" [alphanumeric]="true" />Disabled Preview Code ⧉ Copy<bui-input-otp [value]="'123'" [maxlength]="6" [disabled]="true" />With separator Preview Code ⧉ Copy-<!-- groupSize inserts a separator every N boxes --> <bui-input-otp [(value)]="otp" [maxlength]="6" [groupSize]="3" />