-
Notifications
You must be signed in to change notification settings - Fork 0
/
voto.html
264 lines (243 loc) · 12.3 KB
/
voto.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Eleição Virtual 2018</title>
<!-- Bootstrap e estilos-->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body class="bg">
<nav class="navbar nav navbar-inverse navbar-style">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html"><span class="img-logo"></span></a>
</div>
</div>
</nav>
<!-- FIM CABEÇALHO -->
<!-- CORPO -->
<!-- container: voto -->
<br>
<div id="calendario" class="container secao-geral">
<div class="row">
<div class="col-md-12 text-center">
<h2 class="secao-geral-texto">Seção de Votos</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<!-- corpo -->
<h5 class="modal-header-style">Presidente</h5>
<table class="table table-bordered">
<thead>
<tr>
<th class="col-md-2" scope="col">Candidato</th>
<th class="col-md-2" scope="col">Foto</th>
<th class="col-md-1" scope="col">Escolha</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bulbasaur</td>
<td class="td-foto"><img class="img-modal" src="img/001.png"></img></td>
<td>
<div class="radio">
<label>
<input type="radio" name="opcoes-1"> Escolho você
</label>
</td>
</tr>
<tr>
<td>Charmander</td>
<td class="td-foto"><img class="img-modal" src="img/002.png"></img></td>
<td>
<div class="radio">
<label>
<input type="radio" name="opcoes-1"> Escolho você
</label>
</td>
</tr>
<tr>
<td>Squirtle</td>
<td class="td-foto"><img class="img-modal" src="img/003.png"></img></td>
<td>
<div class="radio">
<label>
<input type="radio" name="opcoes-1"> Escolho você
</label>
</td>
</tr>
</tbody>
</table>
<h5 class="modal-header-style">Vice Presidente</h5>
<table class="table table-bordered">
<thead>
<tr>
<th class="col-md-2" scope="col">Candidato</th>
<th class="col-md-2" scope="col">Foto</th>
<th class="col-md-1" scope="col">Escolha</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pikachu</td>
<td class="td-foto"><img class="img-modal" src="img/004.png"></img></td>
<td>
<div class="radio">
<label>
<input type="radio" name="opcoes-2"> Escolho você
</label>
</td>
</tr>
<tr>
<td>Eevee</td>
<td class="td-foto"><img class="img-modal" src="img/005.png"></img></td>
<td>
<div class="radio">
<label>
<input type="radio" name="opcoes-2"> Escolho você
</label>
</td>
</tr>
</tbody>
</table>
<h5 class="modal-header-style">Primeiro Ministro</h5>
<table class="table table-bordered">
<thead>
<tr>
<th class="col-md-2" scope="col">Candidato</th>
<th class="col-md-2" scope="col">Foto</th>
<th class="col-md-1" scope="col">Escolha</th>
</tr>
</thead>
<tbody>
<tr>
<td>Clefairy</td>
<td class="td-foto"><img class="img-modal" src="img/006.png"></img></td>
<td>
<div class="radio">
<label>
<input type="radio" name="opcoes-3"> Escolho você
</label>
</td>
</tr>
<tr>
<td>Jigglypuff</td>
<td class="td-foto"><img class="img-modal" src="img/007.png"></img></td>
<td>
<div class="radio">
<label>
<input type="radio" name="opcoes-3"> Escolho você
</label>
</td>
</tr>
<tr>
<td>Vulpix</td>
<td class="td-foto"><img class="img-modal" src="img/008.png"></img></td>
<td>
<div class="radio">
<label>
<input type="radio" name="opcoes-3"> Escolho você
</label>
</td>
</tr>
<tr>
<td>Growlithe</td>
<td class="td-foto"><img class="img-modal" src="img/009.png"></img></td>
<td>
<div class="radio">
<label>
<input type="radio" name="opcoes-3"> Escolho você
</label>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3 class="modal-header-style">Justificativa</h5>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<h5>Escreva aqui o motivo de sua abstenção de votos, de acordo com os tópicos listados</h5>
<ul>
<li>Motivo 1 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed blandit, turpis sit amet suscipit lobortis,
ante magna hendrerit nulla, vel fringilla massa neque at nibh. Nam nibh orci, vulputate non venenatis non, lacinia quis velit.</li>
<li>Motivo 2 - Phasellus dolor magna, blandit ut auctor ut, blandit a velit. Donec non erat vulputate, mollis leo quis, finibus dui.</li>
<li>Motivo 3 - Nam ullamcorper fringilla lacus, et egestas nunc sodales sit amet. Duis cursus vulputate sem, quis condimentum risus.
Proin consequat est eu venenatis fringilla. Morbi rutrum nec metus sed feugiat.</li>
</ul>
<textarea class="form-control" id="texto-justificativa" rows="5" placeholder="Campo de texto"></textarea>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
<button class="btn btn-success" id="enviar-voto">Enviar!</button>
</div>
</div>
</div>
<br>
<!-- FIM CORPO -->
<!-- RODAPÉ -->
<footer id="rodape">
<div class="container">
<div class="row">
<div class="col-md-3 text-center">
<ul class="list-unstyled">
<li><a href="#"><span style="font-size: 30px; color: #009B7D;"><i class="fa fa-diamond fa-fw"></i></span></li>
<li><h5 class="empresa-logo">Esmeralda Empreendimento (®) </h5></a></li>
<li class="text-center empresa-logo">2018 - 2019</li>
</div>
<div class="col-md-4 text-right">
<h4>Contatos</h4>
<ul class="list-unstyled footer-text">
<li>QNL 21, Bloco D, Apto. 223 – Taguatinga Norte</li>
<li>Brasília/DF – 72152-114 – Telefone: <a href="#">(61)3033-1140</a></li>
<li>E-mail: <a href="#">[email protected]</a></li>
<li>Horário de Funcionamento: das 11h até as 19h</li>
</ul>
</div>
<div class="col-md-4">
<h4>Redes Sociais</h4>
<!-- <ul class="nav"> -->
<a href="#"><span id="facebook"><i class="icon-footer fa fa-facebook-square fa-fw"></i></span></a>
<a href="#"><span id="twitter"><i class="icon-footer fa fa-twitter-square fa-fw"></i></span></a>
<a href="#"><span id="instagram"><i class="icon-footer fa fa-instagram fa-fw"></i></span></a>
<a href="#"><span id="youtube"><i class="icon-footer fa fa-youtube fa-fw"></i></span></a>
<!-- </ul> -->
</div>
</div><!-- /row -->
</div>
</footer>
<!-- FIM RODAPÉ -->
<!-- modal confirma -->
<div class="modal" tabindex="-1" role="dialog" id="modal-voto">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<p>Seu voto foi computado! Muito obrigado por exercer seu direito a escolha</p>
</div>
<div class="modal-footer">
<h5>Aguarde ser redirecionado</h5>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src=javascript.js></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/loadingoverlay.min.js"></script>
</body>
</html>