From dddd19a7b3ac74a38b2e74b7c87f957ef91895a2 Mon Sep 17 00:00:00 2001 From: bach Date: Wed, 14 Jul 2021 10:54:49 +0200 Subject: [PATCH] added password length --- web/modules/custom/materio_user/materio_user.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/modules/custom/materio_user/materio_user.module b/web/modules/custom/materio_user/materio_user.module index 0c1277d7..5c517b89 100644 --- a/web/modules/custom/materio_user/materio_user.module +++ b/web/modules/custom/materio_user/materio_user.module @@ -82,7 +82,7 @@ function materio_user_form_user_modal_form_alter(&$form, FormStateInterface $for function _materio_user_process_password_confirm($element){ // ksm($element); - $element['pass1']['#description'] = t('Password must contains lowercase, uppercase, digits and special characters.'); + $element['pass1']['#description'] = t('Password must contains height lowercase, uppercase, digits and special characters.'); $element['pass1']['#attributes'] += array( "v-model" => "pass1", "placeholder" => $element['pass1']['#title'],