Skip to content

Commit

Permalink
Turn off autocomplete values on login form
Browse files Browse the repository at this point in the history
  • Loading branch information
ylavoie committed Mar 31, 2020
1 parent 088b83d commit cb31157
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions UI/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ <h1 class="login" align="center">
title=text('User Name')
value = login
accesskey="l"
tabindex=1 } #' ?>
tabindex=1,
attributes = { autocomplete = 'off'} } #' ?>
</div>
<div>
<?lsmb PROCESS input
Expand All @@ -71,7 +72,8 @@ <h1 class="login" align="center">
title=text('Password')
value = ''
accesskey="p"
tabindex=2 } ?>
tabindex=2,
attributes = { autocomplete = 'off'} } ?>
</div>
</div>
<?lsmb PROCESS input
Expand Down

0 comments on commit cb31157

Please sign in to comment.