We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae15d93 commit ec43524Copy full SHA for ec43524
web/templates/admin/add_mail_acc.html
@@ -49,6 +49,11 @@
49
randomstring += chars.substring(rnum,rnum+1);
50
}
51
document.v_add_mail_acc.v_password.value = randomstring;
52
+
53
+ if($('input[name=v_password]').attr('type') == 'text')
54
+ $('#v_password').text(randomstring);
55
+ else
56
+ $('#v_password').text(Array(randomstring.length+1).join('*'));
57
58
$(document).ready(function() {
59
$('#v_account').text($('input[name=v_account]').val());
0 commit comments