X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/f344e46f1369396bcef5170cbc3960d467338f55..27560485ed60dc2974fd88d08d82bc4ab7148fd9:/src/index.php diff --git a/src/index.php b/src/index.php index b7dfe85..a98f50b 100644 --- a/src/index.php +++ b/src/index.php @@ -8,24 +8,15 @@ // // $Id$ -require_once 'lib/pagina.php'; -require_once 'lib/admin.forms.php'; +require_once 'lib/Usuario.php'; -pagina_cabecera('Ingreso'); - -// Si me llegó el form -if (@$_POST['user'] and @$_POST['user']) +if (Usuario::checkAdmins()) // Están todos los admins { - // TODO hacer el login - // Si falla el login, muestro error y form de nuevo - error('Usuario o contraseña incorrecta, intente nuevamente.'); - admin_form_login($_POST['user']); + include 'admin.login.php'; // Login } -else // Si no me viene el form, lo hago loguearse +else // Faltan admins { - admin_form_login(); + include 'admin.asociarse.php'; // Asociar admin } -pagina_pie('Leandro Lucarella', 'llucare@fi.uba.ar'); - ?> \ No newline at end of file