AF
Adam Farid

Password Generator - Copy this React, Mui Component to your project

<div id="password-generator"> <h2>Password Generator</h2> <div class="form-group"> <label for="length">Password Length:</label> <input type="number" id="length" min="4" max="32" value="12"> </div> <div class="form-group"> <label for="include-uppercase"> <input type="checkbox" id="include-uppercase"> Include Uppercase Letters </label> </div> <div class="form-group"> <label for="include-numbers"> <input type="checkbox" id="include-numbers"> Include Numbers </label> </div> <div class="form-group"> <label for="include-symbols"> <input type="checkbox" id="include-symbols"> Include Symbols </label> </div> <button id="generate-password" class="action">Generate Password</button> <div id="password-display"></div> </div>

Prompt

About

PasswordGenerator - Create secure passwords with adjustable length, uppercase, numbers, and symbols. Built with React and MUI. View and copy code!

Share

Last updated 1 month ago