We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dedcc1 commit 912856bCopy full SHA for 912856b
js/functions.js
@@ -319,7 +319,7 @@ function suggestPassword(passwd_form)
319
// restrict the password to just letters and numbers to avoid problems:
320
// "editors and viewers regard the password as multiple words and
321
// things like double click no longer work"
322
- var pwchars = "abcdefhjmnpqrstuvwxyz23456789ABCDEFGHJKLMNPQRSTUVWYXZ";
+ var pwchars = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWYXZ";
323
var passwordlength = 16; // do we want that to be dynamic? no, keep it simple :)
324
var passwd = passwd_form.generated_pw;
325
var randomWords = new Int32Array(passwordlength);
0 commit comments