-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
32 lines (32 loc) · 1.02 KB
/
header.php
File metadata and controls
32 lines (32 loc) · 1.02 KB
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
<div id="topo1">
<div id="logo">
<a href="./home.php" style="text-decoration:none">
<img src="image/logo.png" height="60"/>
</a>
</div>
<div id="menu">
<ul>
<div class="dropdown">
<li>
<span class="dropbtn">Advogados</span>
<div class="dropdown-content">
<a href="home.php">Buscar Advogados</a>
<a href="chatadvogado.php">Chat com os Advogados</a>
<a href="relatorioadvogado.php">Relatorio dos Advogados</a>
<a href="capturardocumento.php">Captura Documento</a>
</div>
</li>
</div>
</ul>
</div>
<div id="persona">
<div class="dropdown">
<img src="image/persona.png" height="50" class="dropbtn"/>
<div class="dropdown-content">
<a href="./configuracao.php">Configuracao</a>
<a href="./perfil.php">Perfil de <b><?php echo htmlspecialchars($_SESSION["ds_nome"]); ?></b></a>
<a href="logout.php" >Sair</a>
</div>
</div>
</div>
</div>