Skip to main content
NeuralUIv1.14.3New
GitHub
Component

Password

Password input with reveal toggle, optional strength meter, browser autofill metadata and ControlValueAccessor support.

TypeScript
import { NeuPasswordComponent } from '@neural-ui/core/password';

Uses autocomplete=username and autocomplete=current-password so browser password managers can fill both fields.

TypeScript
import { NeuPasswordComponent } from '@neural-ui/core/password';

@Component({
  imports: [NeuPasswordComponent],
  template: `<neu-password label="Password" [floatingLabel]="true" name="password" autocomplete="current-password" [showStrength]="true" />`
})
export class ExampleComponent {}