This website collects cookies to deliver better user experience
How to hide password value in inspect using React and Formik
How to hide password value in inspect using React and Formik
Hello Developers 🤩🤩
Have you ever logged in to Facebook?
Have you ever inspected the Facebook login page?
If not go to Facebook and try inspecting it, you will find the value of the password filed is not showing.
We will replicate that behavior using React and Formik.
Creating Project
npx create-react-app my-app
After project setup, install formik.
npm install formik --save
Basic setup
Setup a basic template for email and password input with submit button.