J-Haynes / password-gen

Generate secure passwords & see how long they will take to crack
https://password-gen-xi.vercel.app
1 stars 0 forks source link

Add click to copy password functionality #7

Open J-Haynes opened 4 months ago

J-Haynes commented 4 months ago

Reduce friction when generating passwords by allowing users to copy passwords in one click!

A possible solution below was generated by ai so be careful!!

const handleCopy = () => { navigator.clipboard.writeText(thePassword); // You can add any UI indication here that the text has been copied if needed };

 <div>
          <h1 style={{ display: 'inline-block' }}>{thePassword}</h1>
          <button onClick={handleCopy}>Copy</button>
        </div>