From 5ab067cf8696df8ba44cd4e9c57226b73ecddb59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Wed, 28 Jun 2023 16:12:38 +0200 Subject: [PATCH] Use password strenght estimator when setting new password after password reset. --- src/Controller/SecurityController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Controller/SecurityController.php b/src/Controller/SecurityController.php index 480d5f58..095dfd54 100644 --- a/src/Controller/SecurityController.php +++ b/src/Controller/SecurityController.php @@ -141,6 +141,7 @@ class SecurityController extends AbstractController 'type' => PasswordType::class, 'first_options' => [ 'label' => 'user.settings.pw_new.label', + 'password_estimator' => true, ], 'second_options' => [ 'label' => 'user.settings.pw_confirm.label',