forked from Skycosta/proj_integrado_3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cadastrar_consulta.html
151 lines (142 loc) · 6.46 KB
/
cadastrar_consulta.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style_cadastrar_consulta.css">
<title>Portal Med</title>
</head>
<body>
<style>
.section-wrapper{
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
</style>
<div id = "menu-lateral">
<nav>
<span>
PORTAL MED
</span>
<img src="./assets/imagem_atendente.png" alt="Imagem do Atendente" class="imagem-atendente">
<a>Mariana Bittencourt</a>
<a>Atendente</a>
<ul>
<button><li><a href="./index.html">Início</a></li></button>
<button><li><a href="./consultas.html">Consultas</a></li></button>
<button><li><a href="./cadastro_paciente.html">Cadastrar Pacientes</a></li></button>
<button><li><a href="./cadastro_medico.html">Cadastrar Médicos</a></li></button>
<button><li><a href="login.html">Sair</a></li></button>
</ul>
</nav>
</div>
<header>
<div class="header-content">
<h1><img src="./assets/imagem_cadastrar_consulta.png" alt="Consultas"> Cadastrar nova consulta </h1>
</div>
</header>
<main>
<div class="section-wrapper">
<div class="filter-section">
<h1>Escolha a <span style="color: #5978E5;">especialidade</span> e siga sua prioridade. <br> Os profissionais serão listados por <span style="color: #5978E5;">ordem de disponibilidade</span></h1>
<div class="filter-container">
<div class="filter-element">
<label for="element1">Especialidade</label>
<input type="text" id="element1" name="element1">
</div>
<div class="filter-element">
<label for="element2">Médico</label>
<input type="text" id="element2" name="element2">
</div>
<div class="filter-element">
<label for="element3">Datas Dispoíveis</label>
<input type="text" id="element3" name="element3">
</div>
</div>
<div class="button-container">
<button class="clear-button">Limpar filtro</button>
<button class="apply-button">Buscar</button>
</div>
</div>
<div class="filter-section">
<h1>Horários disponíveis para consulta</h1>
<div class="filter-container">
<div class="filter-element-time">
<button for="element1">09:30</button>
</div>
<div class="filter-element-time">
<button for="element1">10:00</button>
</div>
<div class="filter-element-time">
<button for="element1">10:30</button>
</div>
<div class="filter-element-time">
<button for="element1">11:00</button>
</div>
<div class="filter-element-time">
<button for="element1">11:30</button>
</div>
<div class="filter-element-time">
<button for="element1">12:00</button>
</div>
<div class="filter-element-time">
<button for="element1">12:30</button>
</div>
<div class="filter-element-time">
<button for="element1">13:00</button>
</div>
<div class="filter-element-time">
<button for="element1">13:30</button>
</div>
<div class="filter-element-time">
<button for="element1">14:00</button>
</div>
<div class="filter-element-time">
<button for="element1">14:30</button>
</div>
</div>
</div>
<div class="filter-section">
<h1>Cadastrar informações</h1>
<div class="filter-container">
<div class="filter-element">
<label for="element1">Nome do Paciente</label>
<input type="text" id="element1" name="element1">
</div>
<div class="filter-element">
<label for="element2">CPF</label>
<input type="text" id="element2" name="element2">
</div>
<div class="filter-element">
<label for="element3">Tipo de consulta</label>
<input type="text" id="element3" name="element3">
</div>
<div class="filter-element">
<label for="element3">Convênio</label>
<input type="text" id="element3" name="element3">
</div>
<div class="filter-element">
<label for="element3">Data nascimento</label>
<input type="text" id="element3" name="element3">
</div>
<div class="filter-element">
<label for="element3">Observações</label>
<input type="text" id="element3" name="element3">
</div>
</div>
<div class="button-container">
<button class="clear-button">Limpar filtro</button>
<button class="apply-button">Buscar</button>
</div>
</div>
</div>
</div>
</div>
</main>
<footer>
<button class="cadastrar-button"><a href="./cadasto_sucesso.html">Cadastrar consulta</a> </button>
<img src="assets/imagem_logo.png" alt="Logo do Aplicativo" class="logo-footer">
</footer>
</body>
</html>