]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_Login.php
-chau servicios_bandas_notas.gif se reemplazó por servicios_notas.gif
[mecon/intranet.git] / sistema / local_lib / HTML_Login.php
index 4f4db5e53adce89c168592ddceaf26c09a1d6ea9..ae427f385fe9d28fa44494f9d161e7aadc474396 100644 (file)
@@ -80,19 +80,25 @@ class HTML_Login extends HTML_Table {
                                  'cellSpacing' => 2,
                                  'width'       => '100%'));
       $img = new MECON_HTML_Image('images/login_candados.gif');
                                  'cellSpacing' => 2,
                                  'width'       => '100%'));
       $img = new MECON_HTML_Image('images/login_candados.gif');
+      $img2 = new MECON_HTML_Image('images/login_flechita.gif');
       $int->addRow(array($img->toHTML().'Usuarios',
       $int->addRow(array($img->toHTML().'Usuarios',
-                         $img->toHTML().'Usuario:',
+                         $img2->toHTML().'Usuario:',
                         '<INPUT maxLength=50 name=usuario size=10>',
                         '<INPUT maxLength=50 name=usuario size=10>',
-                        $img->toHTML().'Contraseña:',
+                        $img2->toHTML().'Contraseña:',
                         '<INPUT maxLength=50 name=password size=10 type=password>'.
                         '<INPUT maxLength=50 name=password size=10 type=password>'.
-                        '<INPUT value="'.$_GET['redirect'].'" name=redirect type=hidden>',
+                        '<INPUT value="'.@$_GET['redirect'].@$_POST['redirect'].'" name=redirect type=hidden>',
                         '<INPUT name = Submit type=submit value=Enviar>'));
       $int->updateColAttributes(0, array('class'   => 'titulo_tabla',
                                          'bgColor' => '#003366'));
       $int->updateColAttributes(1, array('class'   => 'titulo'));
       $int->updateColAttributes(3, array('class'   => 'titulo'));
                         '<INPUT name = Submit type=submit value=Enviar>'));
       $int->updateColAttributes(0, array('class'   => 'titulo_tabla',
                                          'bgColor' => '#003366'));
       $int->updateColAttributes(1, array('class'   => 'titulo'));
       $int->updateColAttributes(3, array('class'   => 'titulo'));
+      if(isset($this->login_incorrecto) && $this->login_incorrecto == true)
+      {
+        $login_incorrecto = new MECON_HTML_Image('images/login_incorrecto.gif');
+        $login_incorrecto = '<div align=left>'.$login_incorrecto->toHTML().'</div>';
+      }else $login_incorrecto='';
       $this->addRow(array($int));
       $this->addRow(array($int));
-      return '<FORM ACTION = "login.php" METHOD = "POST">'.parent::toHTML().'</FORM>';
+      return $login_incorrecto.'<FORM ACTION = "login.php" METHOD = "POST">'.parent::toHTML().'</FORM>';
     }
     // -X2C
 
     }
     // -X2C