type AuthInputFieldProps = { id: string; label: string; value: string; onChange: (nextValue: string) => void; placeholder: string; isDisabled: boolean; type?: 'text' | 'password' | 'email'; name?: string; autoComplete?: string; }; /** * A labelled input field for authentication forms. * Renders a `