added upload doc

This commit is contained in:
2024-09-20 21:21:35 +02:00
parent 31e76e40cf
commit d0698f2a6a
12 changed files with 486 additions and 15 deletions
+15 -8
View File
@@ -38,7 +38,8 @@ $result = $stmt->get_result();
<?php include('include/navigationbar.php'); ?>
<div class="content-page">
<div class="content">
<?php include('include/topbar.php'); ?>
<?php //include('include/topbar.php');
?>
<div class="page-content-wrapper">
<div class="container-fluid">
@@ -84,7 +85,7 @@ $result = $stmt->get_result();
<th>Provincia</th>
<th>Nazione</th>
<th>Tipo</th>
<th>Ruolo</th>
<th>Action</th>
</tr>
<tr>
@@ -98,7 +99,7 @@ $result = $stmt->get_result();
<th><input type="text" placeholder="Cerca Provincia" class="form-control form-control-sm"></th>
<th><input type="text" placeholder="Cerca Nazione" class="form-control form-control-sm"></th>
<th><input type="text" placeholder="Cerca Tipo" class="form-control form-control-sm"></th>
<th><input type="text" placeholder="Cerca Ruolo" class="form-control form-control-sm"></th>
<th></th>
</tr>
</thead>
@@ -122,13 +123,19 @@ $result = $stmt->get_result();
<td><?php echo htmlspecialchars($row['province']); ?></td>
<td><?php echo htmlspecialchars($row['country']); ?></td>
<td><?php echo ucfirst($row['owner_type']); ?></td>
<td><?php echo htmlspecialchars($row['role']); ?></td>
<td>
<!-- Pulsante per modificare i dettagli del proprietario -->
<a href="manage-owner.php?owner_id=<?php echo $row['owner_id']; ?>" class="btn btn-info btn-sm">
<i class="fas fa-info-circle"></i> Dettagli
</a>
<div class="btn-group" role="group">
<!-- Pulsante per modificare i dettagli del proprietario -->
<a href="manage-owner.php?owner_id=<?php echo $row['owner_id']; ?>" class="btn btn-info btn-sm">
<i class="fas fa-info-circle"></i> Dettagli
</a>
<!-- Pulsante per i documenti del proprietario con un margine a sinistra -->
<a href="add-docs.php?owner_id=<?php echo $row['owner_id']; ?>" class="btn btn-warning btn-sm ml-2">
<i class="fas fa-file-alt"></i> DOCS
</a>
</div>
</td>
</tr>
<?php } ?>
</tbody>