806 B
806 B
title, type, tags, author, cover, dateModified
| title | type | tags | author | cover | dateModified | |||
|---|---|---|---|---|---|---|---|---|
| Show/hide password toggle | snippet |
|
chalarangelo | thread | 2020-11-25T20:46:35+02:00 |
Renders a password input field with a reveal button.
- Use the
useState()hook to create theshownstate variable and set its value tofalse. - When the
<button>is clicked, executesetShown, toggling thetypeof the<input>between'text'and'password'.
const PasswordRevealer = ({ value }) => {
const [shown, setShown] = React.useState(false);
return (
<>
<input type={shown ? 'text' : 'password'} value={value} />
<button onClick={() => setShown(!shown)}>Show/Hide</button>
</>
);
};
ReactDOM.createRoot(document.getElementById('root')).render(
<PasswordRevealer />
);