diff --git a/authentik/stages/password/forms.py b/authentik/stages/password/forms.py index 9d8902cf5..b29591c2d 100644 --- a/authentik/stages/password/forms.py +++ b/authentik/stages/password/forms.py @@ -53,5 +53,5 @@ class PasswordStageForm(forms.ModelForm): fields = ["name", "backends", "configure_flow", "failed_attempts_before_cancel"] widgets = { "name": forms.TextInput(), - "backends": forms.SelectMultiple(get_authentication_backends()), + "backends": forms.SelectMultiple(choices=get_authentication_backends()), }