This is an automated email from the ASF dual-hosted git repository.
janhoy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new 11d0602 Disable login autocomplete (#11)
11d0602 is described below
commit 11d060201e82f3e77308376c5d44a257e2d85c64
Author: lilliehammer <[email protected]>
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 c21f262..e770453 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 />