Quick Password Generator
Lass dir ein beliebig langes Passwort generieren, mit oder ohne Zahlen, Buchstaben, Sonderzeichen usw.
Kommentar abgeben zu diesen Beitrag/Code ?Dann hier klicken
Der hier verwendete Code
<script src="/js_webseite/jquery.js"></script>
<div class='primary random_password'>
<section>
<h2>Quick Password Generator</h2>
<p>Creates a quick password of numbers & lowercase letters<br>
Lowercase 'L's, letter 'O's and number '0's are omitted
<p><input type="submit" value="Create (8)" data-len="8" class="pwgen button_class">
<input type="submit" value="Create (12)" data-len="12" class="pwgen button_class">
<input type="submit" value="Create (16)" data-len="16" class="pwgen button_class">
<input type="text" size="16" maxlength="16" class="input_class password" readonly>
</section>
<section>
<h2>Comprehensive Password Generator</h2>
<form id='big_passwords'>
<ul>
<li><label><input type="checkbox" class="input_class" id="pwlowercase" checked>Use Lowercase Letters <span>abcdefghijklmnopqrstuvwxyz</span></label>
<li><label><input type="checkbox" class="input_class" id="pwdigits" checked>Use Digits <span>0123456789</span></label>
<li><label><input type="checkbox" class="input_class" id="pwuppercase">Use Uppercase Letters <span>ABCDEFGHIJKLMNOPQRSTUVWXYZ</span></label>
<li><label><input type="checkbox" class="input_class" id="pwbasicsymbol">Use Basic Symbols <span>!?#$&*@</span></label>
<li><label><input type="checkbox" class="input_class" id="pwmoresymbol">Use More Symbols <span>%()+-=[]{}|~.,</span></label>
<li><label><input type="checkbox" class="input_class" id="pwskipsimilar" checked>Skip Similar Looking Characters <span>0OoIl1</span></label>
<li><label><input type="checkbox" class="input_class" id="pwunique">All Unique Characters</label>
<li><label><input type="checkbox" class="input_class" id="pwmethod2">Equal Character Set Probability</label>
<li><label><input type="text" class="input_class" id="pwlength" value="32" size="3" maxlength="4">Password Length</label>
<li><label><input type="text" class="input_class" id="pwnum" value="4" size="3" maxlength="3">Number of Passwords to Create</label>
</ul>
<div class="error_msg"></div>
<p><input type="submit" name="pwsubmit" value="Generate Passwords" class="button_class">
</form>
<textarea readonly class='input_class' id="password_results"></textarea>
</section>
<section>
<h2>WPA Password Generator</h2>
<p>Similar to the quick password generator above,<br>this generator creates passwords with lengths ideal for WPA Wi-Fi networks
<p><input type="submit" value="Short (12)" data-len="12" class="pwgen button_class">
<input type="submit" value="Long (32)" data-len="32" class="pwgen button_class">