Advertisement
gilsonfilho

Untitled

Jun 30th, 2021
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.91 KB | None | 0 0
  1. <?php
  2. //header
  3. include_once 'includes/header.php';
  4. ?>
  5.  
  6. <div class="row">
  7.      <div class="col s12 m6 push-m3">
  8.       <h3 class="light"> Clientes</h3>
  9.       <table class=" striped">
  10.         <thead>
  11.           <tr>
  12.             <th>Nome:</th>
  13.             <th>sobrenome:</th>
  14.             <th>email:</th>
  15.             <th>idade:</th>
  16.  
  17.  
  18.           </tr>
  19.  
  20.         </thead>
  21.  
  22.         <tbody>
  23.           <td> Gilson</td>
  24.           <td>Filho</td>
  25.           <td> gilsonvieirasouzafilho@live.com</td>
  26.           <td>21</td>
  27.           <td> <a href="" class="btn-floating orange"> <i class="material-icons"> edit</a></td>
  28.           <td> <a href="" class="btn-floating red"> <i class="material-icons"> delete</a></td> </a></td>
  29.         </tbody>
  30.  
  31.       </table>
  32.       <a href="adicionar.php" class="btn">Adicionar Cliente</a>
  33.      </div>
  34.  
  35.  </div>
  36.  
  37.  
  38.  
  39. <?php
  40. //footer
  41. include_once 'includes/footer.php';
  42. ?>
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement