forked from alvesil/projetofinaletc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar_logado.php
31 lines (28 loc) · 1.68 KB
/
navbar_logado.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
<header class="p-3 mb-3 border-bottom bg-dark">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<a href="/" class="d-flex align-items-center mb-2 mb-lg-0 text-dark text-decoration-none">
<svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap"><use xlink:href="#bootstrap"/></svg>
</a>
<ul class="nav col-12 col-lg-auto text-light me-lg-auto mb-2 justify-content-center mb-md-0">
<li><a href="index.php" class="nav-link px-2">Meus Pets</a></li>
<li><a href="#" class="nav-link px-2 disabled">Meus Pedidos(Em Breve)</a></li>
<li><a href="agendamento.php" class="nav-link px-2">Meus Agendamentos</a></li>
</ul>
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3">
<button class="btn disabled text-light"><?php echo $resultadoTutor['TutorNome']; ?></button>
</form>
<div class="dropdown text-end">
<a href="#" class="d-block link-dark text-decoration-none dropdown-toggle" id="dd1" data-bs-toggle="dropdown" aria-expanded="false">
<img src="uploads/tutores/<?php echo $resultadoTutor['TutorFoto']; ?>" alt="mdo" width="32" height="32" class="rounded-circle">
</a>
<ul class="dropdown-menu text-small" aria-labelledby="dd1">
<li><a class="dropdown-item" href="#">Configurações</a></li>
<li><a class="dropdown-item" href="perfil.php">Perfil</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="logout.php">Sair</a></li>
</ul>
</div>
</div>
</div>
</header>