From fb39da53a6abc3fdaaf1554cfee4c3ac4e7da146 Mon Sep 17 00:00:00 2001 From: stasbilay02 Date: Tue, 10 Dec 2024 12:33:45 +0300 Subject: [PATCH] add email input to email login --- .../modules/module_shop_client/views/login_at_module_shop.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/modules/module_shop_client/views/login_at_module_shop.php b/kernel/modules/module_shop_client/views/login_at_module_shop.php index b635740..c68105f 100644 --- a/kernel/modules/module_shop_client/views/login_at_module_shop.php +++ b/kernel/modules/module_shop_client/views/login_at_module_shop.php @@ -9,7 +9,7 @@ echo \kernel\helpers\Html::h(2, "Форма авторизации/регист $form = new ActiveForm(); $form->beginForm("/admin/module_shop_client/auth/"); -$form->field(\itguild\forms\inputs\TextInput::class, 'email', [ +$form->field(\itguild\forms\inputs\EmailInput::class, 'email', [ 'class' => "form-control", 'placeholder' => 'Email', ])