Browse Source

Fixed missing virtual keyboard on password field - refs BT#5674

Yannick Warnier 11 years ago
parent
commit
c77d1adfac
1 changed files with 8 additions and 1 deletions
  1. 8 1
      src/ChamiloLMS/Controller/IndexController.php

+ 8 - 1
src/ChamiloLMS/Controller/IndexController.php

@@ -298,7 +298,14 @@ class IndexController extends CommonController
                 'autofocus' => 'autofocus'
             )
         );
-        $form->addElement('password', 'password', get_lang('Pass'), array('class' => 'input-medium '));
+        $form->addElement(
+            'password', 
+            'password', 
+            get_lang('Pass'), 
+            array(
+                'class' => 'input-medium virtualkey'
+            )
+        );
         $form->addElement('style_submit_button', 'submitAuth', get_lang('LoginEnter'), array('class' => 'btn'));
         $html = $form->return_form();
         /*if (api_get_setting('openid_authentication') == 'true') {