Password Generator – Based Strong PasswordGenerator
<div class="box-pass">
<div class="col-md-12">
<div class="form-control">
<label>a-z A-Z 0-9 #</label>
<div class="input input-ex-1">
<input class="input-generator-pass" type="text" />
<button>Refresh</button>
</div>
</div>
<div class="form-control">
<label>a-z,A-Z</label>
<div class="input input-ex-2">
<input class="input-generator-pass" type="text" />
<button>Refresh</button>
</div>
</div>
<div class="form-control" style="text-align: center;">
<label><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<div class="form-control">
<label>a-z</label>
<div class="input input-ex-4">
<input class="input-generator-pass" type="text" />
<button>Refresh</button>
</div>
</div>
<div class="form-control">
<label>Special Characters</label>
<div class="input input-ex-5">
<input class="input-generator-pass" type="text" />
<button>Refresh</button>
</div>
</div>
<div class="form-control">
<label>0-9</label>
<div class="input input-ex-6">
<input class="input-generator-pass" type="text" />
<button>Refresh</button>
</div>
</div>
</div>
</div>
</div>
<!--End Contianer-->
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.statically.io/gh/TongaSoft/Files/master/generate-password.js"></script>
<script>
$('.test').generatePassword();
$('.input-ex-1').generatePassword({
passCharachterSet: 'a-z A-Z 0-9 #',
passSize: "25",
passSeparate: " "
});
$('.input-ex-2').generatePassword({
passCharachterSet: 'a-z,A-Z'
});
$('.input-ex-3').generatePassword({
passCharachterSet: 'A-Z'
});
$('.input-ex-4').generatePassword({
passCharachterSet: 'a-z'
});
$('.input-ex-5').generatePassword({
passCharachterSet: '#'
});
$('.input-ex-6').generatePassword({
passCharachterSet: '0-9'
});
Relacionado