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;
}
.header img {
width: 11px;
width: 13px;
}
/* Header Menu */
.menu {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -14,10 +14,13 @@
$name = strtoupper($_SESSION['nombre']);
$email = unserialize($_SESSION['user'])->getEmail();
return $reply = '<div class="code info">
<h1>Bienvenido '.$name.' al Panel de Usuario.</h1><hr />
<p>Usuario: '.$name.'</p>
<p>Email: '.$email.'</p>
</div>'."\n";
<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>Email: '.$email.'</p>
</div>'."\n";
}
//Manage the user account.

View File

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

View File

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

View File

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