Add files via upload

This commit is contained in:
Fernando Méndez
2021-05-10 18:15:58 +02:00
committed by GitHub
parent 9da5b9310b
commit 63d18e5ba3
18 changed files with 22 additions and 19 deletions

View File

@ -1,4 +1,3 @@
<!DOCTYPE HTML>
<?php
//General Config File:
require_once('../assets/php/config.php');
@ -39,6 +38,7 @@
<div class="column side"></div>'."\n";
}
?>
<!DOCTYPE HTML>
<!--
Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines

View File

@ -11,7 +11,7 @@
//Welcome view.
static function panel(){
$name = strtoupper($_SESSION['nombre']);
$name = strtoupper(unserialize($_SESSION['user'])->getName());
$email = unserialize($_SESSION['user'])->getEmail();
return $reply = '<div class="code info">
<h1>Bienvenido '.$name.' a tu Panel de Usuario.</h1>