-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.07 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div>
<div id="titulo">
<h1>Gerenciamento Pacientes</h1>
<div id="painel-gerenciamento-paciente">
<div id="insercao-paciente">
<input
type="text"
id="nome-paciente"
placeholder="Nome do Paciente"
/>
<button id="botao-paciente-normal">normal</button>
<button id="botao-paciente-prioritario">prioritário</button>
</div>
<div id="div-pacientes">
<h2>Lista de Pacientes</h2>
<ul id="lista-pacientes"></ul>
</div>
</div>
</div>
</div>
<script src="classPaciente.js"></script>
<script src="main.js"></script>
<script src="pacienteslista.js"></script>
<script src="tela.js"></script>
<script src="ui.js"></script>
<script src="reorganizarListaPacientes.js"></script>
</body>
</html>