This repository has been archived on 2019-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
SistemiPHP/negozioVirtuale/dashboard.php

26 lines
551 B
PHP

<?php
include 'globals.php';
if (!isset($_SESSION['cliente'])) {
header('Location: login.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Negozio Virtuale</title>
</head>
<body>
<h1> Negozio online: Servizi </h1>
<h3> Benvenuto, <?php echo $_SESSION['cliente']; ?> !</h3>
<ol>
<li><a href=""> Gestisci il tuo profilo </a></li>
<li><a href=""> Segui i tuoi ordini </a></li>
<li><a href=""> Accedi al carrello </a></li>
<li><a href="logout.php"> Disconnetti </a></li>
</ol>
</body>
</html>