Jpass - Random Password Generator
https://www.kelv.net/programming/jpass.php
let j = new Jpass();
console.log(j.generate());
I needed a password generator to add passwords to the signup form of a php/mysql based admin system, and here is the result of my programming effort. The passwords are fairly easily pronounced and quite random.
Fixed variable name bug which stopped Jpass working in Netscape Navigator. Tested in 4.6.
Refactored into generic plugin.
Kelv