File: client/src/pages/Login.jsx The password field has no ποΈ button. Add a toggle to show/hide password. Fix: const [show, setShow] = useState(false) type={show ? "text" : "password"} Add a ποΈ button next to the input. ~5 lines!
File: client/src/pages/Login.jsx
The password field has no ποΈ button.
Add a toggle to show/hide password.
Fix:
const [show, setShow] = useState(false)
type={show ? "text" : "password"}
Add a ποΈ button next to the input.
~5 lines!