Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //header
- include_once 'includes/header.php';
- ?>
- <div class="row">
- <div class="col s12 m6 push-m3">
- <h3 class="light"> Clientes</h3>
- <table class=" striped">
- <thead>
- <tr>
- <th>Nome:</th>
- <th>sobrenome:</th>
- <th>email:</th>
- <th>idade:</th>
- </tr>
- </thead>
- <tbody>
- <td> Gilson</td>
- <td>Filho</td>
- <td> gilsonvieirasouzafilho@live.com</td>
- <td>21</td>
- <td> <a href="" class="btn-floating orange"> <i class="material-icons"> edit</a></td>
- <td> <a href="" class="btn-floating red"> <i class="material-icons"> delete</a></td> </a></td>
- </tbody>
- </table>
- <a href="adicionar.php" class="btn">Adicionar Cliente</a>
- </div>
- </div>
- <?php
- //footer
- include_once 'includes/footer.php';
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement