<?php /////////////////////////////////////////////////////////////////////////// // // // NOTICE OF COPYRIGHT // // // // Adeada Talleres Electricos // // http://www.grupogisma.com // // // // This program is free software; you can redistribute it and/or modify // // it under the terms of the GNU General Public License as published by // // the Free Software Foundation; either version 2 of the License, or // // (at your option) any later version. // // // // This program is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details: // // // // http://www.gnu.org/copyleft/gpl.html // // // /////////////////////////////////////////////////////////////////////////// session_start(); session_destroy(); if (isset($_POST['registrarse'])) { $registrar = validar_registro($_POST['registro_cif'], $_POST['registro_email'], $_POST['registro_pass'], $_POST['registro_pass_2'], $_FILES['logo']); }
if ($_POST['log_nombre']) { $datos_login = comprobar_login($_POST['log_empresa'], $_POST['log_nombre'], $_POST['log_password']); if ($datos_login != 1) { $_SESSION[APLICACION_ . 'bbdd'] = $datos_login['bbdd']; $_SESSION[APLICACION_ . 'empresa'] = $_POST['log_empresa']; $_SESSION[APLICACION_ . 'user'] = $_POST['log_nombre']; $_SESSION[APLICACION_ . 'pass'] = $_POST['log_password']; $_SESSION[APLICACION_ . 'nombre_usuario'] = $datos_login['usuario']; $_SESSION[APLICACION_ . 'perfil'] = $datos_login['perfil']; } } if ($_POST['enviar_password']) { $mensaje = recordar_password($_POST['recordar_empresa'], $_POST['recordar_email']); } if ($_POST['registrarse']) { $mensaje = validar_registro($_POST['registrar_empresa'], $_POST['registrar_email'], $_POST['registrar_usuario'], $_POST['registrar_password'], $_POST['registrar_repetir_password']); } //SI NO HAY SESION O ES INCORRECTA if (!$_SESSION[APLICACION_ . 'user'] || comprobar_login($_SESSION[APLICACION_ . 'empresa'], $_SESSION[APLICACION_ . 'user'], $_SESSION[APLICACION_ . 'pass']) == '1') { ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es"> <head> <!-- Personalizacion --> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="icon" type="image/x-icon" href="../img/favicon.ico" /> <title>Adeada Talleres Eléctricos</title> <!-- Descripcion y tags --> <meta name="title" content="Adeada Talleres Electricos"></meta>