function generate() {
var length = 10;
var chars = "abcdefghijklmnopqrstuvwxyz!@@#$%^&*()-+<>ABCDEFGHIJKLMNOP1234567890";
var pass = "";
for (var x = 0; x < length; x++) {
var i = Math.floor(Math.random() * chars.length);
pass += chars.charAt(i);
}
document.getElementById("Password").value = pass;
}
Sign up here with your email
ConversionConversion EmoticonEmoticon