personnes: emptying email and password fields on user access manage page, to
avoid confusing user with browser stored data. Closes #5452master
parent
9e8be8ad51
commit
563749730f
@ -0,0 +1,7 @@
|
||||
(function($){
|
||||
$(function() {
|
||||
$.each(['email', 'password1', 'password2'], function(i, element) {
|
||||
$('form input[name=' + element + ']').val('');
|
||||
})
|
||||
})
|
||||
})(window.jQuery)
|
Reference in New Issue