This is an automated email from the ASF dual-hosted git repository. joewitt pushed a commit to branch support/nifi-1.11.x in repository https://gitbox.apache.org/repos/asf/nifi.git
commit c276ac5f27674a45243632d22b11b76f089b15ca Author: M Tien <[email protected]> AuthorDate: Fri Feb 14 20:46:08 2020 -0800 NIFI-7136 Added autocomplete="off" to login password input (#4055) NIFI-7136 Added autocomplete="off" to login password input Updated nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/partials/login/login-form.jsp Co-authored-by: Pierre Villard <[email protected]> Signed-off-by: Andy LoPresto <[email protected]> --- .../nifi-web-ui/src/main/webapp/WEB-INF/partials/login/login-form.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/partials/login/login-form.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/partials/login/login-form.jsp index 9f9a660..6339664 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/partials/login/login-form.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/partials/login/login-form.jsp @@ -26,7 +26,7 @@ <div class="setting"> <div class="setting-name">Password</div> <div class="setting-field"> - <input type="password" placeholder="password" id="password"/> + <input type="password" placeholder="password" id="password" autocomplete="off"/> </div> </div> -</div> \ No newline at end of file +</div>
