typepassword
Typepassword is a term used to describe a field type intended for inputting passwords or other secret values in user interfaces. Such fields are designed to protect the entered characters from casual observation by masking them with symbols (commonly dots or asterisks) as they are typed. In web browsers, this behavior is implemented with an input element whose type attribute is set to password, for example: <input type="password" …>. Many frameworks extend this with additional features, including visibility toggles, strength meters, and integration with password managers.
Security and best practices: Masking only protects against shoulder-surfing; it does not keep credentials secure in
Alternatives and related concepts: In mobile platforms, secure text entry may include platform-specific properties like secureTextEntry
See also: password hashing, password managers, secure input, authentication.