Hello,
I have tried the resolution for turning off the Autocomplete for JIRA7x mentioned in the knowledge base https://confluence.atlassian.com/jirakb/how-to-disable-autocomplete-for-jira-login-fields-765399841.html
The "Login Form" setting doesn't give any error. But "Login Gadget" setting results in JIRA to go down. Please suggest an appropriate measures to avoid the same
Thanks,
Pooja
I too need to modify the JIRA Login field for autocomplete. Followed the instructions on the above mentioned page but they do not work. When I examine the HTML for the login page, I see that no changes to includes/loginform.jsp have any affect. In addition to adding the autocomplete=false, I modified the style setting just to see what would happen. But there is no change in the HTML that the browser receives.
Is the loginform.jsp cached somewhere?
Did you get this figured out? I'm also having this issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
the autocomplete input need to be set to "off" not "false".
but still, i had the same problem, i solved it by adding a JS code in the announcement banner to add attribute autocomplete="off". here is my code :
AJS.$(window).load(function(){
$('#login-form-username').prop('autocomplete', 'off');
$('#login-form-password').prop('autocomplete', 'off');
});
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I did the same but JS code is not working for me. Is there any other setting which need to be changed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.