-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelatorioUsuario.html
180 lines (124 loc) · 6.02 KB
/
relatorioUsuario.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Carteira de vacinação</title>
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.12/css/dataTables.bootstrap.min.css">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<link href="css/menu.css" rel="stylesheet">
<meta charset="UTF-8">
</head>
<body>
<div class="panel panel-primary">
<div class="panel-heading">
<h3>Carteira de vacinação <img src="img/vacina (4).png" alt=""/></h3>
</div>
<nav id="menu">
<ul>
<script type="text/javascript">
function Nova()
{
location.href=" index.html"
}
</script>
<li><a href="tabela.html">Home</a></li>
<li><a href="relatorioUsuario.html">Carteira de vacinação</a></li>
<input type="submit" value="Sair" onClick="Nova()">
</ul>
</nav>
<div class="col-sm-3">
</div>
</div> <!-- /#top -->
<div id="filtros">
<div class="form-group">
<div class="col-md-0"> </div>
</div>
</div>
<br>
<div class="table-responsive">
<table id="rel_vacinas" class="table table-condensed">
<thead>
<tr>
<th>Data </th>
<th>CPF</th>
<th>Vacina</th>
<th>Lote</th>
<th>Dose</th>
<th>Local</th>
<th>Matrícula Funcionário</th>
</tr>
</thead>
<tbody>
<tr>
<!--<td>>%=rs.getString(3)%></td><!--data-->
<td>27/02/2021</td><!--//vacina-->
<td>123.456.789-01</td>
<td>Febre Amarela</td><!--//vacina-->
<td>123487BR</td><!--//lote-->
<td>1</td><!--//dose-->
<td>UBS centro</td><!--//local-->
<td>100890</td><!--//matricula funcionario-->
<tr>
<tr>
<!--<td>>%=rs.getString(3)%></td><!--data-->
<td>01/03/2021</td><!--//vacina-->
<td>123.456.789-01</td>
<td>Coronavac</td><!--//vacina-->
<td>358NSBR</td><!--//lote-->
<td>1</td><!--//dose-->
<td>UBS centro</td><!--//local-->
<td>100890</td><!--//matricula funcionario-->
<tr>
<tr>
<!--<td>>%=rs.getString(3)%></td><!--data-->
<td>27/02/2021</td><!--//vacina-->
<td>123.456.789-03</td>
<td>Febre Amarela</td><!--//vacina-->
<td>123487BR</td><!--//lote-->
<td>1</td><!--//dose-->
<td>UBS centro</td><!--//local-->
<td>100890</td><!--//matricula funcionario-->
<tr>
<tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
</tr>
</tbody>
</table>
</div>
</body>
</html>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery.min.js"><\/script>');</script>
<script src="js/bootstrap.min.js"></script>
<script src="datatables/media/js/jquery.dataTables.js" type="text/javascript"></script>
<!-- Scripts -->
<script type="text/javascript" src="js/scripts.js"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function () {
$('#tabela_alunos').dataTable();
});
</script>
</body>