Add files via upload

This commit is contained in:
Fernando Méndez 2021-05-03 21:58:47 +02:00 committed by GitHub
parent ac2b2cfee0
commit 04f9c8bf2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
20 changed files with 30 additions and 25 deletions

View File

@ -61,7 +61,7 @@ button:hover, .button:hover {
font-size: 18px; font-size: 18px;
} }
.header img { .header img {
width: 11px; width: 13px;
} }
/* Header Menu */ /* Header Menu */
.menu { .menu {

View File

@ -4,7 +4,7 @@
require_once('../assets/php/config.php'); require_once('../assets/php/config.php');
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -4,7 +4,7 @@
require_once('../assets/php/config.php'); require_once('../assets/php/config.php');
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -4,7 +4,7 @@
require_once('../../assets/php/config.php'); require_once('../../assets/php/config.php');
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -4,7 +4,7 @@
require_once('../../assets/php/config.php'); require_once('../../assets/php/config.php');
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -4,7 +4,7 @@
require_once('../../assets/php/config.php'); require_once('../../assets/php/config.php');
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -4,7 +4,7 @@
require_once('../../assets/php/config.php'); require_once('../../assets/php/config.php');
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -4,7 +4,7 @@
require_once('../../assets/php/config.php'); require_once('../../assets/php/config.php');
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -7,7 +7,7 @@
$template = new Template(); $template = new Template();
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -6,7 +6,7 @@
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -20,7 +20,7 @@
$register = $view->getRegister(); $register = $view->getRegister();
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -11,7 +11,7 @@
?> ?>
<!DOCTYPE HTML> <!DOCTYPE HTML>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -23,7 +23,7 @@
?> ?>
<!DOCTYPE HTML> <!DOCTYPE HTML>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -16,7 +16,7 @@
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -10,7 +10,7 @@
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -40,7 +40,7 @@
} }
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">

View File

@ -14,7 +14,10 @@
$name = strtoupper($_SESSION['nombre']); $name = strtoupper($_SESSION['nombre']);
$email = unserialize($_SESSION['user'])->getEmail(); $email = unserialize($_SESSION['user'])->getEmail();
return $reply = '<div class="code info"> return $reply = '<div class="code info">
<h1>Bienvenido '.$name.' al Panel de Usuario.</h1><hr /> <h1>Bienvenido '.$name.' a tu Panel de Usuario.</h1>
<hr />
<h3>'.strftime("%A %e de %B de %Y | %H:%M").'</h3>
<br />
<p>Usuario: '.$name.'</p> <p>Usuario: '.$name.'</p>
<p>Email: '.$email.'</p> <p>Email: '.$email.'</p>
</div>'."\n"; </div>'."\n";

View File

@ -80,6 +80,8 @@ class FormRegister extends Form {
$bd->createUser("", $username, $email, $password, "user"); $bd->createUser("", $username, $email, $password, "user");
$this->user = $bd->selectUser($username, $password); $this->user = $bd->selectUser($username, $password);
if ($this->user) { if ($this->user) {
$this->user->setPass(null);
$_SESSION["user"] = serialize($this->user);
$_SESSION["nombre"] = $this->user->getName(); $_SESSION["nombre"] = $this->user->getName();
$_SESSION["rol"] = $this->user->getRol(); $_SESSION["rol"] = $this->user->getRol();
$_SESSION["login"] = $register; $_SESSION["login"] = $register;

View File

@ -11,7 +11,7 @@
?> ?>
<!DOCTYPE HTML> <!DOCTYPE HTML>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">
@ -26,9 +26,9 @@
?> ?>
<!-- Main --> <!-- Main -->
<div class="main"> <?php
<div class="image"><img src="../img/logo_trasparente.png" /></div> $template->print_main();
</div> ?>
<!-- Reply --> <!-- Reply -->
<section class="reply"> <section class="reply">

View File

@ -4,7 +4,7 @@
require_once('../assets/php/config.php'); require_once('../assets/php/config.php');
?> ?>
<!-- <!--
Práctica 2 - Sistemas Web | Grupo D Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines CompluCine - FDI-cines
--> -->
<html lang="es"> <html lang="es">