-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatendente.html
37 lines (36 loc) · 1.13 KB
/
atendente.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
<!doctype html>
<html lang=pt-br>
<head>
<title>Atendente</title>
<meta charset="utf-8">
</head>
<body>
<div>
<img src ="logo.png" width="150">
<ul>
<li><a href="principal.html">Principal</a></li>
<li><a href="atendentes.html">Atendentes</a></li>
<li><a href="medicos.html">Medicos</a></li>
<li><a href="pacientes.html">Pacientes</a></li>
<li><a href="consultas.html">Consultas</a></li>
<li><a href="cidades.html">Cidades</a></li>
<li><a href="estados.html">Estados</a></li>
<li><a href="index.html">Sair</a></li>
</ul>
</div>
<div>
<h1>Atendente</h1>
<form action="salvar_atendente.html">
<label>Nome</label>
<input type="text">
<br><br>
<label>CPF</label>
<input type="text">
<br><br>
<label>Celular</label>
<input type="text">
<br><br>
<input type="submit">
</form>
</body>
</html>