|
|
|
|
@ -722,7 +722,7 @@ class IndexManager { |
|
|
|
|
function display_login_form() { |
|
|
|
|
$form = new FormValidator('formLogin', 'POST', null, null, array('class'=>'form-vertical')); |
|
|
|
|
// 'placeholder'=>get_lang('UserName') |
|
|
|
|
$form->addElement('text', 'login', get_lang('UserName'), array('class' => 'span2')); |
|
|
|
|
$form->addElement('text', 'login', get_lang('UserName'), array('class' => 'span2','autofocus' => 'autofocus')); |
|
|
|
|
$form->addElement('password', 'password', get_lang('Pass'), array('class' => 'span2')); |
|
|
|
|
$form->addElement('style_submit_button','submitAuth', get_lang('LoginEnter'), array('class' => 'btn')); |
|
|
|
|
$html = $form->return_form(); |
|
|
|
|
|