-
Notifications
You must be signed in to change notification settings - Fork 1
/
datatable.html
63 lines (50 loc) · 1.6 KB
/
datatable.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
<DOCTYPE html>
<html>
<head>
<title>Agendados</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/agendados.css">
<link rel="stylesheet" type="text/css" href="css/tabela.css">
<link rel="stylesheet" type="text/css" href="css/jquery-ui.min.css">
<link rel="stylesheet" type="text/css" href="css/jquery.dataTables.css">
<script type="text/javascript" src="http://localhost/jquery/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="http://localhost/clinica/js/menufixo.js"></script>
<script type="text/javascript" src="http://localhost/clinica/js/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://localhost/clinica/js/dataTableInit.js"></script>
<script type="text/javascript" src="http://localhost/clinica/js/jquery.dataTables.min.js"></script>
</head>
<body>
<div class="container"></div>
<header>
<h3 align="center"> Agendados-DATA TABLE </h1>
</header>
<hr>
<div class="menu">
<ul>
<li><a class="active" href="principal.php">Home</a></li>
<li><a href="agendados.html">Agendados</a></li>
<li><a href="atendimento.php">Atendimento</a></li>
<li><a href="">Relatórios</a> </li>
<li><a href="index.php">Sair</a></li>
</ul>
</div>
<hr>
<div id="info">
<table id="agendados" cellspacing="0">
<thead>
<tr>
<th>Nome</th>
<th>Endereço</th>
<th>Bairro</th>
<th>Telefone</th>
<th>Idade</th>
<th>Data Consulta</th>
<th>Horário</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<footer><center>Copyright © - Desenvolvido por @Vasconcellos </center></footer>
</body>
</html>