chg: [authentication] turn off password autocomplete

pull/129/head
VVX7 2019-10-02 17:25:00 -04:00
parent 83df3e4f74
commit 71780003d0
1 changed files with 2 additions and 2 deletions

View File

@ -35,11 +35,11 @@
<br><legend>Welcome to MISP-Dashboard</legend><br>
<div class="input email required">
{{ form.username.label }}<br>
{{ form.username(size=32, maxlength=255) }}
{{ form.username(size=32, maxlength=255, autocomplete="off", autofocus="autofocus") }}
</div>
<div class="input password required">
{{ form.password.label }}<br>
{{ form.password(size=32, maxlength=255) }}
{{ form.password(size=32, maxlength=255, autocomplete="off") }}
</div>
<div class="clear"></div>