From 90630fe8523a9de739de4ec73076b69a24914d4b Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Wed, 13 Dec 2023 12:05:42 -0600 Subject: [PATCH] Auto-disable submit button for login form not sure why i had explicitly disabled that before..? --- tailbone/views/auth.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tailbone/views/auth.py b/tailbone/views/auth.py index f8d71d34..7c4d26f0 100644 --- a/tailbone/views/auth.py +++ b/tailbone/views/auth.py @@ -101,8 +101,6 @@ class AuthenticationView(View): form = forms.Form(schema=UserLogin(), request=self.request) form.save_label = "Login" - form.auto_disable_save = False - form.auto_disable = False # TODO: deprecate / remove this form.show_reset = True form.show_cancel = False if form.validate():