You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by cp...@apache.org on 2021/03/29 17:09:26 UTC

[lucene-solr] branch branch_8x updated: Disable login autocomplete (#11)

This is an automated email from the ASF dual-hosted git repository.

cpoerschke pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 34bb532  Disable login autocomplete (#11)
34bb532 is described below

commit 34bb5328349d110ed1e09af41596fd3358f39ce0
Author: lilliehammer <li...@connexta.com>
AuthorDate: Tue Mar 23 08:07:58 2021 -0700

    Disable login autocomplete (#11)
---
 solr/webapp/web/partials/login.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/webapp/web/partials/login.html b/solr/webapp/web/partials/login.html
index 29c8c71..cf9cd9a 100644
--- a/solr/webapp/web/partials/login.html
+++ b/solr/webapp/web/partials/login.html
@@ -28,7 +28,7 @@ limitations under the License.
       </p>
       <br/>
       <div ng-show="error" class="alert alert-danger">{{error}}</div>
-      <form name="form" ng-submit="login()" role="form">
+      <form name="form" ng-submit="login()" role="form" autocomplete="off">
         <div class="form-group">
           <label for="username">Username</label>
           <input type="text" name="username" id="username" class="form-control" ng-model="username" required />