-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (72 loc) · 2.42 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/jpg" href="img/logoBancoDeSangueNew.png">
<link rel="stylesheet" type="text/css" href="./styles/header.css">
<link rel="stylesheet" type="text/css" href="./styles/styleIndex.css">
<link rel="stylesheet" type="text/css" href="./styles/footer.css">
<title>Banco de Sangue</title>
</head>
<body>
<header>
<nav class="navbar">
<div class="imagemLogo">
<img src="img/logoBancoDeSangueNew.png" alt="logo Doação">
</div>
<h2 class="loginTitulo">Banco de Sangue</h2>
<ul class="login">
<li><a href="pages/login.html">Logar</a></li>
<li><a href="pages/cadastro.html">Cadastrar</a></li>
</ul>
</nav>
</header>
<main>
<div id="modal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="modal-img">
</div>
<section class="caixa">
<div class="tituloModal">
<h2>Quantidade de Bolsas de Sangue por Tipo Sanguíneo</h2>
<button onclick="openModal('img/tabelaDoacao.png')">Quem pode doar para quem</button>
</div>
<label for="filtrarTabela">Filtre:</label>
<input type="text" name="filtro" value="" id="filtrarTabela" placeholder="Digite o nome do hospital">
<!-- <button id="preencherTabela" class="btoPreencherTabela">Preencher Tabela</button> -->
<table>
<thead>
<tr>
<th rowspan="2">#</th>
<th rowspan="2">Hospital</th>
<th colspan="8">Tipo Sanguíneo</th>
</tr>
<tr>
<th>A+</th>
<th>A-</th>
<th>B+</th>
<th>B-</th>
<th>AB+</th>
<th>AB-</th>
<th>O+</th>
<th>O-</th>
</tr>
</thead>
<tbody id="tabelaHospitais">
<!-- Adicione informações para outros hospitais aqui -->
</tbody>
</table>
</section>
</main>
<!-- Rodapé -->
<footer>
<p class="rodape__texto">© André Cruz - 2023 / <span id="ano"></span> - Banco de Sangue</p>
</footer>
<script src="js/modal.js"></script>
<script src="js/preencheTabelaTipoSangue.js"></script>
<script src="js/selecionaLinhaNaTabela.js"></script>
<script src="js/filtraHospital.js"></script>
<script src="js/ano.js"></script>
</body>
</html>