-
Notifications
You must be signed in to change notification settings - Fork 0
/
menuadm.html
102 lines (89 loc) · 4.92 KB
/
menuadm.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Par Perpet</title>
<!-- Importando fonte -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap" rel="stylesheet">
<!-- Importando arquivo com estilo -->
<link rel="stylesheet" href="assets/css/style.css"/>
<!-- Importando imagem para barra de endereço -->
<link rel="sortcut icon" href="favicon.ico" type="image/x-icon" />
<!-- BOOTSTRAP -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css" integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
</head>
<body>
<header>
<div class="container">
<nav class="navbar navbar-light bg-light justify-content-between">
<div class="row">
<div class="col-sm-8">
<a class="navbar-brand" href="index.html" target="_blank"><img src="assets/images/logo.png" width="50px"></a>
<h2> Par Perpet</h2>
</div>
<div class="col-sm-1">
<a class="navbar-brand" href="https://www.facebook.com/" target="_blank">
<img src="assets/images/facebook-app-symbol.svg" width="20px"/>
</a>
</div>
<div class="col-sm-1"><a class="navbar-brand" href="https://www.instagram.com/" target="_blank">
<img src="assets/images/instagram.svg" width="20px"/>
</a>
</div>
<div class="col-sm-1"><a class="navbar-brand" href="https://api.whatsapp.com/send?phone=5521000000000&text=Oi%2C%20Quero%20adotar%20um%20pet!%20" target="_blank">
<img src="assets/images/whatsapp.svg" width="20px"/>
</a></div>
</div>
</nav>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="row">
<div class="col-sm-2">
<h4> <a href="adopt.html" target="_blank">Adoção</a> </h4>
</div>
<div class="col-sm-2">
<h4> <a href="host.html" target="_blank">Hospedagem</a> </h4>
</div>
<div class="col-sm-2">
<h4> <a href="tour.html" target="_blank">Passeadores</a> </h4>
</div>
<div class="dropdown show col-sm-3 ">
<a class="dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<h4>Gerenciar</h4>
</a>
<div class="dropdown-menu alert-warning " aria-labelledby="dropdownMenuLink">
<a class="dropdown-item alert-warning" href="approveprofessional.html">Profissionais</a>
<hr>
<a class="dropdown-item alert-warning" href="approvedcomment.html">Comentarios</a>
<hr>
<a class="dropdown-item alert-warning" href="index.html">Home</a> <!-- Editar dados da home -->
</div>
</div>
<div class="col-sm-1">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="currentColor" class="bi bi-person-circle" viewBox="0 0 16 16">
<path d="M11 6a3 3 0 1 1-6 0 3 3 0 0 1 6 0z"/>
<path fill-rule="evenodd" d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm8-7a7 7 0 0 0-5.468 11.37C3.242 11.226 4.805 10 8 10s4.757 1.225 5.468 2.37A7 7 0 0 0 8 1z"/>
</svg>
</div>
<div class="col-sm-2">
<ul>
<li><a href="perfil.html" target="_blank">Carlos - Adm</a> </li>
<li><a href="message.html" target="_blank">Mensagens</a></li>
<li><a href="index.html" target="_blank">Sair</a></li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ" crossorigin="anonymous"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
</body>
</html>