-
Notifications
You must be signed in to change notification settings - Fork 1
/
administrativo.php
43 lines (42 loc) · 1.65 KB
/
administrativo.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
43
<?php
include_once 'connection.php';
?>
<!DOCTYPE html>
<html lang="pt-br">
<body>
<header>
<?php
include_once 'login.php';
include_once 'homeadm.php';
?>
</header>
<div class="container conteudo">
<table class="table" border="3" >
<thead>
<tr style="background-color: #BC320B" >
<td class="warning" cold-md-1 > <b> ID </b> </td>
<td class="warning" col-md-8> <b> Nome do arquivo </b> </td>
<td class="warning"> <b> Data de submissão </b> </td>
<td class="warning"> <b> Tipo de Arquivo </b> </td>
<td class="warning"> <b> Status</td> </b>
</tr>
<tr style="background-color: #BC320B" >
<td class="success" cold-md-1> </td>
<td class="success"> </td>
<td class="success"> </td>
<td class="success"> </td>
<td class="success"> <button class="btn " type="submit"> Aprovar</button> </td>
</tr>
<tr style="background-color: #BC320B" >
<td class="success" cold-md-1> </td>
<td class="success" col-md-8> </td>
<td class="success"> </td>
<td class="success"> </td>
<td class="success"> </td>
</tr>
</thead>
</table>
</div>
<?php
include_once 'footer.php';
?>