Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. <h1 class="title"><i class="fa fa-gears fa-2x"></i> PAINEL ADMINISTRATIVO / PRODUTOS </h1>
  2. <table class="table table-hover">
  3. <thead>
  4. <tr>
  5. <th>Produto</th>
  6. <th>Tipo</th>
  7. <th>R$ Preço</th>
  8. <th></th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <tr>
  13. <?php foreach($prod as $get_prods): ?>
  14. <td><?php echo $get_prods->produto; ?></td>
  15. <td><?php echo $get_prods->tipo; ?></td>
  16. <td><?php echo $get_prods->preco; ?></td>
  17. <td><a href="#box-editar" data-toggle="modal" data-target="#box-editar"><i class="fa fa-pencil "></i> Editar</a></td>
  18. </tr>
  19.  
  20. <?php endforeach; ?>
  21. </tbody>
  22. </table><br />
  23.  
  24. <!-- Modal editar -->
  25. <div class="modal fade" id="box-editar" tabindex="-1" role="dialog" aria-labelledby="boxLabel" aria-hidden="true">
  26. <div class="modal-dialog modal-md">
  27. <div class="modal-content">
  28. <div class="modal-header">
  29. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  30. <h4 class="modal-title" id="boxLabel"><i class="fa fa-pencil "></i> Editar Produto</h4>
  31. </div>
  32. <div class="modal-body">
  33.  
  34. </div>
  35. <div class="modal-footer">
  36. <button type="button" class="btn btn-primary" onclick='' data-dismiss="modal">Salvar alterações</button>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement