Skip to content

Commit

Permalink
#146 Disable autocomplete on login form
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Mar 16, 2017
1 parent f7f2193 commit 4d34417
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/app/views/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ <h1 align="center"><img src="images/logo.png" height="50"/></h1>
<alert ng-repeat="alert in alerts" type="{{alert.type}}" close="closeAlert($index)">{{alert.message}}</alert>
<form ng-submit="login()">
<div class="form-group has-feedback has-feedback-left">
<input type="text" class="form-control" placeholder="Login" ng-model="params.username"/>
<i style="top:0px;" class="form-control-feedback glyphicon glyphicon-user"></i>
<input type="text" class="form-control" placeholder="Login" ng-model="params.username" autocomplete="off">
<i style="top:0px;" class="form-control-feedback glyphicon glyphicon-user"></i>
</div>
<br />
<div class="form-group has-feedback has-feedback-left">
<input type="password" class="input form-control" placeholder="Password" ng-model="params.password" />
<input type="password" class="input form-control" placeholder="Password" ng-model="params.password" autocomplete="off">
<i style="top:0px;" class="form-control-feedback glyphicon glyphicon-lock "></i>
</div>
<br /> <br />
Expand Down

0 comments on commit 4d34417

Please sign in to comment.