-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprodutos.php
42 lines (40 loc) · 1.17 KB
/
produtos.php
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
<?php require_once 'cabecalho.php' ?>
<div class="row">
<div class="col-md-12">
<h2>Produtos</h2>
</div>
</div>
<div class="row">
<div class="col-md-4">
<a href="produtos-criar.php" class="btn btn-info btn-block">Crair Novo Produto</a>
</div>
</div>
<div class="row">
<div class="col-md-12">
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Nome</th>
<th>Preço</th>
<th>Quantidade</th>
<th>Categoria</th>
<th class="acao">Editar</th>
<th class="acao">Excluir</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>O Senhor dos Aneis</td>
<td>R$ 80,55</td>
<td>2</td>
<td>Livros</td>
<td><a href="/produtos-editar.php" class="btn btn-info">Editar</a></td>
<td><a href="#" class="btn btn-danger">Excluir</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<?php require_once 'rodape.php' ?>