Random Password Generator Using JavaScript

This Simple Program allows user to enter password length and generates Random Password according to user’s length.

Follow These Instructions :-

First, Create Html Code:

<form name="pgenerate">
 <input type="text" size=18 name="output">
 <input type="button" value="Generate Password" onClick="populateform(this.form.thelength.value)"><br />
 <b>Password Length:</b> <input type="text" name="thelength" size=3 value="7">
 </form>

And Create JavaScript Code:

<script>

var keylist="abcdefghijklmnopqrstuvwxyz123456789"
 var temp=''

function generatepass(plength){
 temp=''
 for (i=0;i<plength;i++)
 temp+=keylist.charAt(Math.floor(Math.random()*keylist.length))
 return temp
 }

function populateform(enterlength){
 document.pgenerate.output.value=generatepass(enterlength)
 }
 </script>

Now You have successfully created simple password generator.

Download Random Generator Source Code Free:


0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x