Inputs
Password Rules
A password field with a segmented meter and a rules checklist: not just "weak", but exactly what is left to fix.
- input
- password
- strength
- checklist
Preview
Use it with AI
- 1. Copy the link.
- 2. Write to your agent in your own words and drop the link into the sentence.
- 3. The agent opens the link and installs the component from the registry.
put this in the header: https://vibeui.ru/c/input-011?lang=en
Надёжностьсредний
- не короче 10 символов
- строчные и прописные буквы
- хотя бы одна цифра
- знак препинания или символ
- не повторяет слово «пароль»
Show the full instructions
What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.
# Install and place "input-011" (Password Rules) from VibeUI
## 1. Install first — do not skip, do not recreate
Run this exact command before writing any code:
npx shadcn@latest add https://vibeui.ru/r/input-011.json
Registry item: https://vibeui.ru/r/input-011.json
Installs to: components/vibeui/input-011.tsx (the exact path follows this project's components.json aliases).
npm dependencies: none.
Registry dependencies: none.
Install it from the registry. Do not recreate it from the description,
do not substitute a similar component from another library, and do not
rewrite it to match the project's existing style.
## 2. What it is
A password field with a segmented meter and a rules checklist: not just "weak", but exactly what is left to fix.
A password field: a segmented strength meter, a checklist of rules and a reveal button. The score is derived from the same rules the list shows. Zero dependencies, one file.
## 3. How to use it
import { Input011 } from "@/components/vibeui/input-011"
<Input011
label="Create a password"
minLength={12}
onChange={(value) => setPassword(value)}
/>
Read the installed file for the full prop list.
## 4. Where to place it
This is a small inline component. Put it exactly where the user asked,
inside the existing markup. Do not create a new page, section or
wrapper for it. If a similar control already sits in that spot,
replace it instead of adding a second one.
Placement: ___
(The user fills this line in. If it is still blank, ask where to put it
instead of guessing.)
## 5. Keep exactly as installed
- the local --vibeui-input-011-* palette — do not swap it for your theme tokens
- deriving the score from the number of satisfied rules: otherwise meter and list start contradicting each other
- the rules list beside the meter — an unlabelled bar never says what to fix
- one segment per rule: a segment is a requirement, not an abstract percentage
- autoComplete="new-password": otherwise the browser fills the old one
- the reveal button with aria-pressed: the shown/hidden state has to be announced
## 6. You may change
- the label copy and the set of rules
- the minLength threshold
- the verdict wording and the tone colours
- the accent through the accent prop
## 7. Rules
- The rule set here is a demonstration: your password policy defines the real one.
- Do not block pasting — password managers need it.
- Rule counting does not measure entropy: a long phrase can beat "Aa1!".
- Do not lift the CSS variables into globals.css: the component has to stay a single file.
## 8. Verify
- it renders with no console errors;
- it looks like the preview on the VibeUI page you copied this from;
- if it does not, you changed something listed in section 5 — put it back.For developers
npx shadcn@latest add https://vibeui.ru/r/input-011.jsonhttps://vibeui.ru/r/input-011.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-input-011-*. Клиентский: "use client". Оценка считается от числа выполненных правил, поэтому шкала и список никогда не расходятся. Сегментов ровно столько же, сколько правил. Тон (weak/fair/good) выставляется на корне data-атрибутом, от него красятся и сегменты, и вердикт, и выполненные строки списка.
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
"use client"
import { useId, useState } from "react"
import type { ComponentPropsWithoutRef, CSSProperties } from "react"
export type Input011Props = Omit<
ComponentPropsWithoutRef<"div">,
"children" | "onChange"
> & {
label?: string
minLength?: number
onChange?: (value: string) => void
accent?: string
}
// Идея компонента: надёжность показана сегментами и списком требований, а не
// одной полоской. Полоска отвечает «слабо», но не говорит, что именно
// исправить; здесь каждое требование — отдельная строка, которая гаснет,
// как только выполнена. Оценка считается от числа выполненных правил, поэтому
// шкала и список никогда не расходятся.
const STYLES = `
:where([data-vibeui-block="input-011"]){
--vibeui-input-011-surface:oklch(1 0 0);
--vibeui-input-011-shell:oklch(0.91 0.006 265);
--vibeui-input-011-fg:oklch(0.23 0.014 265);
--vibeui-input-011-muted:oklch(0.56 0.014 265);
--vibeui-input-011-field:oklch(0.985 0.002 265);
--vibeui-input-011-border:oklch(0.88 0.008 265);
--vibeui-input-011-accent:oklch(0.52 0.18 285);
--vibeui-input-011-track:oklch(0.92 0.005 265);
--vibeui-input-011-weak:oklch(0.6 0.2 25);
--vibeui-input-011-fair:oklch(0.72 0.15 75);
--vibeui-input-011-good:oklch(0.55 0.14 155);
--vibeui-input-011-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="input-011"]{
display:flex;flex-direction:column;gap:0.5rem;
width:100%;max-width:21rem;box-sizing:border-box;padding:0.875rem;
background:var(--vibeui-input-011-surface);
border:1px solid var(--vibeui-input-011-shell);border-radius:0.875rem;
font-family:var(--vibeui-input-011-font);color:var(--vibeui-input-011-fg);
}
[data-vibeui-block="input-011"] *{box-sizing:border-box}
[data-vibeui-block="input-011"] label{font-size:0.8125rem;font-weight:600}
[data-vibeui-block="input-011"] [data-part="frame"]{
display:flex;align-items:center;gap:0.375rem;
height:2.5rem;padding:0 0.375rem 0 0.75rem;
background:var(--vibeui-input-011-field);
border:1px solid var(--vibeui-input-011-border);border-radius:0.75rem;
transition:border-color .16s ease,box-shadow .16s ease;
}
[data-vibeui-block="input-011"] [data-part="frame"]:focus-within{
border-color:var(--vibeui-input-011-accent);
box-shadow:0 0 0 3px color-mix(in oklab,var(--vibeui-input-011-accent) 18%,transparent);
}
[data-vibeui-block="input-011"] input{
flex:1;min-width:0;height:100%;border:0;background:none;color:inherit;
font:inherit;font-size:0.875rem;letter-spacing:0.02em;
}
[data-vibeui-block="input-011"] input:focus{outline:none}
[data-vibeui-block="input-011"] [data-part="peek"]{
appearance:none;cursor:pointer;flex:none;
height:1.875rem;padding:0 0.5rem;border:0;border-radius:0.5rem;
background:transparent;color:var(--vibeui-input-011-muted);
font:inherit;font-size:0.75rem;font-weight:600;
transition:background-color .16s ease,color .16s ease;
}
[data-vibeui-block="input-011"] [data-part="peek"]:hover{
background:color-mix(in oklab,var(--vibeui-input-011-fg) 8%,transparent);
color:var(--vibeui-input-011-fg);
}
[data-vibeui-block="input-011"] [data-part="peek"]:focus-visible{
outline:2px solid var(--vibeui-input-011-accent);outline-offset:1px;
}
/* Сегменты вместо сплошной полоски: шаг виден без чтения процентов. */
[data-vibeui-block="input-011"] [data-part="meter"]{display:flex;gap:0.25rem}
[data-vibeui-block="input-011"] [data-part="seg"]{
flex:1;height:0.25rem;border-radius:999px;background:var(--vibeui-input-011-track);
transition:background-color .2s ease;
}
[data-vibeui-block="input-011"] [data-tone="weak"] [data-part="seg"][data-on="1"]{background:var(--vibeui-input-011-weak)}
[data-vibeui-block="input-011"] [data-tone="fair"] [data-part="seg"][data-on="1"]{background:var(--vibeui-input-011-fair)}
[data-vibeui-block="input-011"] [data-tone="good"] [data-part="seg"][data-on="1"]{background:var(--vibeui-input-011-good)}
[data-vibeui-block="input-011"] [data-part="verdict"]{
display:flex;justify-content:space-between;gap:0.5rem;
font-size:0.75rem;color:var(--vibeui-input-011-muted);
}
[data-vibeui-block="input-011"] [data-part="verdict"] strong{font-weight:650}
[data-vibeui-block="input-011"] [data-tone="weak"] [data-part="verdict"] strong{color:var(--vibeui-input-011-weak)}
[data-vibeui-block="input-011"] [data-tone="fair"] [data-part="verdict"] strong{color:var(--vibeui-input-011-fair)}
[data-vibeui-block="input-011"] [data-tone="good"] [data-part="verdict"] strong{color:var(--vibeui-input-011-good)}
[data-vibeui-block="input-011"] ul{
margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:0.1875rem;
}
[data-vibeui-block="input-011"] li{
display:flex;align-items:center;gap:0.4375rem;
font-size:0.75rem;line-height:1.4;color:var(--vibeui-input-011-muted);
}
[data-vibeui-block="input-011"] li[data-done="1"]{color:var(--vibeui-input-011-good)}
[data-vibeui-block="input-011"] li svg{flex:none;width:0.875rem;height:0.875rem;display:block}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="input-011"] *{animation:none!important;transition:none!important}}
`
const TONES = ["weak", "weak", "fair", "fair", "good"] as const
const WORDS = ["слишком слабый", "слабый", "средний", "хороший", "надёжный"]
/**
* Пароль с сегментной шкалой и списком требований: видно, что именно исправить.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Input011({
label = "Придумайте пароль",
minLength = 10,
onChange,
accent,
className,
style,
...props
}: Input011Props) {
const id = useId()
const [value, setValue] = useState("vibeui2026")
const [shown, setShown] = useState(false)
const palette = {
...(accent ? { "--vibeui-input-011-accent": accent } : null),
...style,
} as CSSProperties
const rules = [
{
text: `не короче ${minLength} символов`,
done: value.length >= minLength,
},
{
text: "строчные и прописные буквы",
done: /[a-zа-я]/.test(value) && /[A-ZА-Я]/.test(value),
},
{ text: "хотя бы одна цифра", done: /\d/.test(value) },
{ text: "знак препинания или символ", done: /[^\p{L}\d]/u.test(value) },
{
text: "не повторяет слово «пароль»",
done: !/(пароль|password|qwerty)/i.test(value),
},
]
const done = rules.filter((rule) => rule.done).length
const score = value ? done : 0
const tone = score === 0 ? "weak" : TONES[score - 1]
return (
<>
<style href="vibeui-input-011" precedence="medium">
{STYLES}
</style>
<div
{...props}
data-vibeui-block="input-011"
className={className}
style={palette}
data-tone={tone}
>
<label htmlFor={id}>{label}</label>
<div data-part="frame">
<input
id={id}
type={shown ? "text" : "password"}
autoComplete="new-password"
spellCheck={false}
value={value}
aria-describedby={`${id}-verdict`}
onChange={(event) => {
setValue(event.target.value)
onChange?.(event.target.value)
}}
/>
<button
type="button"
data-part="peek"
aria-pressed={shown}
onClick={() => setShown((was) => !was)}
>
{shown ? "Скрыть" : "Показать"}
</button>
</div>
<div data-part="meter" aria-hidden="true">
{rules.map((rule, index) => (
<span
key={rule.text}
data-part="seg"
data-on={index < score ? "1" : "0"}
/>
))}
</div>
<p data-part="verdict" id={`${id}-verdict`} aria-live="polite">
<span>Надёжность</span>
<strong>{value ? (WORDS[score - 1] ?? WORDS[0]) : "пусто"}</strong>
</p>
<ul>
{rules.map((rule) => (
<li key={rule.text} data-done={rule.done ? "1" : "0"}>
<svg
viewBox="0 0 16 16"
fill="none"
stroke="currentColor"
strokeWidth="1.8"
aria-hidden="true"
>
{rule.done ? (
<path
d="M3.5 8.5 6.5 11.5 12.5 5"
strokeLinecap="round"
strokeLinejoin="round"
/>
) : (
<circle cx="8" cy="8" r="3" />
)}
</svg>
{rule.text}
</li>
))}
</ul>
</div>
</>
)
}