-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.php
More file actions
34 lines (32 loc) · 1.05 KB
/
Copy pathcart.php
File metadata and controls
34 lines (32 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<?php
require_once("server/validate.php");
if (!is_client_logged(true)) {
header("location: userLogin.php");
}
?>
<html lang="it">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Unibo Vinyl - Carrello</title>
<?php require_once("templates/head-section.php") ?>
<link rel="stylesheet" href="./public/css/header.css" />
<link rel="stylesheet" href="public/css/cart.css" />
</head>
<body>
<?php require("./templates/header.php"); ?>
<main>
<h1>Il tuo carrello</h1>
<ul>
</ul>
<p>Nessun articolo aggiunto al carrello</p>
<footer>
<a href="checkout.php">Procedi all'ordine</a>
</footer>
</main>
<script src="./public/js/cart.js"></script>
<script src="./public/js/page-header.js"></script>
</body>
</html>