From df2ab2ef797d4dc65d2a56960a9762f7148b5e23 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 20 Jan 2021 10:09:08 +0100 Subject: [PATCH 2/3] wip: set is_hidden on widget --- src/authentic2/forms/honeypot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/authentic2/forms/honeypot.py b/src/authentic2/forms/honeypot.py index be2530ba..85294972 100644 --- a/src/authentic2/forms/honeypot.py +++ b/src/authentic2/forms/honeypot.py @@ -23,6 +23,7 @@ from django.utils.translation import gettext as _ class HoneypotInput(CheckboxInput): template_name = 'authentic2/honeypot_input.html' + is_hidden = True class HoneypotForm(Form): -- 2.29.2