X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/f344e46f1369396bcef5170cbc3960d467338f55..31b470a6e765233acb5deae095584e5756da6c95:/src/index.php diff --git a/src/index.php b/src/index.php index b7dfe85..9d47441 100644 --- a/src/index.php +++ b/src/index.php @@ -9,23 +9,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