Aggiunta header (implementazione base)

This commit is contained in:
2026-03-20 11:47:11 +01:00
parent 123e684617
commit 7e80c743e5

View File

@@ -32,6 +32,13 @@ if ($result === false) {
</style> </style>
</head> </head>
<body> <body>
<header style="display: flex; justify-content: space-between; align-items: center; padding: 10px; background-color: #f2f2f2; border-bottom: 1px solid #ddd;">
<div id="logo" style="font-size: 24px; font-weight: bold;">TechStore</div>
<div>
<button style="margin-left: 10px; padding: 8px 16px; background-color: #007bff; color: white; border: none; border-radius: 4px; cursor: pointer;">Carrello</button>
<button style="margin-left: 10px; padding: 8px 16px; background-color: #28a745; color: white; border: none; border-radius: 4px; cursor: pointer;">Accesso</button>
</div>
</header>
<h1>Prodotti TechStore</h1> <h1>Prodotti TechStore</h1>
<?php if ($result->num_rows > 0): ?> <?php if ($result->num_rows > 0): ?>