mirror of
https://github.com/serghey-rodin/vesta.git
synced 2024-12-25 21:41:13 -08:00
18 lines
544 B
JavaScript
18 lines
544 B
JavaScript
$(function() {
|
|
$('#v_email').change(function() {
|
|
document.getElementById('v_notify').value = document.getElementById('v_email').value;
|
|
});
|
|
});
|
|
|
|
|
|
randomString = function() {
|
|
var chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz';
|
|
var string_length = 10;
|
|
var randomstring = '';
|
|
for (var i = 0; i < string_length; i++) {
|
|
var rnum = Math.floor(Math.random() * chars.length);
|
|
randomstring += chars.substr(rnum, 1);
|
|
}
|
|
document.v_add_user.v_password.value = randomstring;
|
|
}
|