
05-16-2008
|
| Jr. Member
Join Date: Apr 2008
Posts: 991
BRL$: 256.08 Thanks: 2
Thanked 11 Times in 11 Posts
Rep Power: 111 | | Random Password Generator [SOURCE] Made by a friend of me, good luck!
<script>
//Random password generator- by javascriptkit.com
//Visit JavaScript Kit ( To view links or images in this forum your post count must be 1 or greater. You currently have 0 posts. ) for script
//Credit must stay intact for use
var keylist="abcdefghijklmnopqrstuvwxyz123456789"
var temp=''
function generatepass(plength){
temp=''
for (i=0;i<plength;i++)
temp+=keylist.charAt(Math.floor(Math.random()*keyl ist.length))
return temp
}
function populateform(enterlength){
document.pgenerate.output.value=generatepass(enter length)
}
</script>
<form name="pgenerate">
<input type="text" size=18 name="output">
<input type="button" value="Generate Password" onClick="populateform(this.form.thelength.value)"& gt;<br>
<b>Password Length:</b> <input type="text" name="thelength" size=3 value="7">
</form><p align="center"><font face="arial" size="-2">This free script provided by</font><br>
<font face="arial, helvetica" size="-2"><a href="http://javascriptkit.com">JavaScript
Kit</a></font></p> | |
__________________ To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
To receive latest updates about BRL Forums, Subscribe to Latest Updates Thread.
| | | |