Day 1
Day one of the second 365 day coding challenge for codingphasedotcom.
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
<body>
<div class="container">
<h2>Password Generator</h2>
<div class="result-container">
<span id="result"></span>
<button class="btn" id="clipboard">
<i class="far fa-clipboard"></i>
</button>
</div>
<div class="settings">
<div class="setting">
<label>P/W length</label>
<input type="number" id="length" min="4" max="20" value="20" />
</div>
<div class="setting">
<label>Uppercase Letters</label>
<input type="checkbox" id="uppercase" checked />
</div>
<div class="setting">
<label>Lowercase Letters</label>
<input type="checkbox" id="lowercase" checked />
</div>
<div class="setting">
<label>Numbers</label>
<input type="checkbox" id="numbers" checked />
</div>
<div class="setting">
<label>Symbols</label>
<input type="checkbox" id="symbols" checked />
</div>
</div>
<button class="btn btn-large" id="generate">
GENERATE PASSWORD
</button>
</div>
<script src="pwgen.js"></script>
</body>
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
<body>
<div class="container">
<h2>Password Generator</h2>
<div class="result-container">
<span id="result"></span>
<button class="btn" id="clipboard">
<i class="far fa-clipboard"></i>
</button>
</div>
<div class="settings">
<div class="setting">
<label>P/W length</label>
<input type="number" id="length" min="4" max="20" value="20" />
</div>
<div class="setting">
<label>Uppercase Letters</label>
<input type="checkbox" id="uppercase" checked />
</div>
<div class="setting">
<label>Lowercase Letters</label>
<input type="checkbox" id="lowercase" checked />
</div>
<div class="setting">
<label>Numbers</label>
<input type="checkbox" id="numbers" checked />
</div>
<div class="setting">
<label>Symbols</label>
<input type="checkbox" id="symbols" checked />
</div>
</div>
<button class="btn btn-large" id="generate">
GENERATE PASSWORD
</button>
</div>
<script src="pwgen.js"></script>
</body>
Comments
Post a Comment