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
20 changed files with 30 additions and 25 deletions

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.