You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated main Javascript to apply autocomplete="off" to both username and password inputs on login page. This will help prevent the browser from providing hints for the username (and password), as requested in the Issue.
The reason will be displayed to describe this comment to others. Learn more.
Nice, tested locally, working as expected.
Should we target main and backport instead of specifically targeting v2-10-test. When changes are compatible I believe main then backport is better to limit drift between the two branches, I tend to directly target v2-10-test for changes that are completely different and incompatible with main anymore. @ephraimbuddy what do you think ?
Should we target main and backport instead of specifically targeting v2-10-test. When changes are compatible I believe main then backport is better to limit drift between the two branches, I tend to directly target v2-10-test for changes that are completely different and incompatible with main anymore. @ephraimbuddy what do you think ?
I agree with you. Main then backport, for changes that are a bit compatible otherwise a different PR targeting the test branch would be better
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
area:UIRelated to UI/UX. For Frontend Developers.legacy uiWhether legacy UI change should be allowed in PR
5 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes#44019
Updated main Javascript to apply
autocomplete="off"to both username and password inputs on login page. This will help prevent the browser from providing hints for the username (and password), as requested in the Issue.Based on Flask-AppBuilder source code, i.e. https://github.com/dpgaspar/Flask-AppBuilder/tree/master/flask_appbuilder/templates/appbuilder/general/security (see
login_db.htmlandlogin_ldap.html), this should work for bothAUTH_DB(default) andAUTH_LDAPauthentication, since they both apparently use the same HTML elements in the form.