From 71780003d079430b8998b4196eccd711c0bda0ca Mon Sep 17 00:00:00 2001 From: VVX7 Date: Wed, 2 Oct 2019 17:25:00 -0400 Subject: [PATCH] chg: [authentication] turn off password autocomplete --- templates/login.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/login.html b/templates/login.html index 0d6cd1b..cfd60fc 100644 --- a/templates/login.html +++ b/templates/login.html @@ -35,11 +35,11 @@
Welcome to MISP-Dashboard
{{ form.username.label }}
- {{ form.username(size=32, maxlength=255) }} + {{ form.username(size=32, maxlength=255, autocomplete="off", autofocus="autofocus") }}
{{ form.password.label }}
- {{ form.password(size=32, maxlength=255) }} + {{ form.password(size=32, maxlength=255, autocomplete="off") }}