Random password generator:
I did not write this script but I did modify it. This javascript will generate passwords via a form which you fill out. It has the option to add numbers, letters and symbols.
This code goes into HEAD section
This code goes into the BODY section:
<table border=1 style="border-color:black" bgcolor="#e0e0e0" align=center>
<tr>
<td>
<form name="myform">
<input type=hidden name=firstNumber><input type=hidden name=firstAlpha><input type=hidden name=firstOther>
<p style="font:bold 8pt arial;">Password characters:
<input type=checkbox name=latterNumber>Numbers
<input type=checkbox name=latterAlpha>Letters
<input type=checkbox name=latterOther>Symbols
<p style="font:bold 8pt arial">Password length:
<input type=text name=passwordLength size=3 value=""> (Should be at least 8 characters)
<p style="font:bold 8pt arial">Extra characters:
<input type=text name=extraChars size=3> (This feature is NOT necessary)
<p style="font:bold 8pt arial;">Your generated password:
<input type=text name=password size=25>
<center>
<br>
<br>
<input type=button value="Create Password" style="cursor:hand" onClick="verifyInput(); document.myform.password.value =
getPassword(document.myform.passwordLength.value, document.myform.extraChars.value,
document.myform.firstNumber.checked, document.myform.firstAlpha.checked, document.myform.firstOther.checked,
document.myform.latterNumber.checked, document.myform.latterAlpha.checked, document.myform.latterOther.checked);">
</center>
</form>
</td></tr></table>
Click here to go back.