-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
61 lines (56 loc) · 2.13 KB
/
index.php
File metadata and controls
61 lines (56 loc) · 2.13 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
include("header.php");
include('farm-connect.php');
$data = $conn->query("SELECT * FROM Propriedades");
if ($data->num_rows > 0) { ?>
<div style="text-align: center; height: 100vh; display: flex; flex-direction: column; margin: 100px">
<h1>Olá! Aqui estão suas propriedades cadastradas :)</h1>
<table>
<thead>
<tr>
<th>Nome</th>
<th>Nº de escrituta</th>
<th>Tamanho</th>
</tr>
</thead>
<tbody>
<?php foreach ($data as $prop) : ?>
<tr>
<td><?php echo $prop['nome']; ?></td>
<td><?php echo $prop['numero_de_escritura']; ?></td>
<td><?php echo $prop['tamanho']; ?></td>
<td>
<a hidden href="/Farm/pages/deletar/?id=<?php echo $prop['numero_de_escritura']; ?>"></a>
<button class="button d" onclick="confimar(this, '<?php echo $prop['nome']; ?>')">Deletar</button>
<a class="button" href="/Farm/pages/editar/propriedade/?id=<?php echo $prop['numero_de_escritura']; ?>">Editar </a>
<a class="button" href="/Farm/pages/ver/propriedade/?id=<?php echo $prop['numero_de_escritura']; ?>">Ver </a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<script>
function confimar(e, prop) {
const confirm = window.confirm('Deseja mesmo deletar a porpriedade ' + prop.toUpperCase() + " ?")
if (confirm) {
e.parentNode.children[0].click()
}
}
</script>
<h2>Deseja cadastrar mais?</h2>
<a style="color: #efefef; background: #02b7ec; padding: 10px 50px; margin: 30px; font-weight: bold" href="/Farm/pages/cadastro/propriedade">SIM</a>
</div>
<?php
} else {
?>
<div style="text-align: center; height: 100vh; display: flex; flex-direction: column; margin: 100px">
<h1>Olá! Verificamos que você não possui nenhuma propriedade cadastrada :(</h1>
<h2>Deseja cadastrar agora?</h2>
<a style="color: #efefef; background: #02b7ec; padding: 10px 50px; margin: 30px; font-weight: bold" href="/Farm/pages/cadastro/propriedade">SIM</a>
</div>
<?php
}
?>
<?php
include("footer.php");
?>