-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.02 KB
/
index.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
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<link rel="stylesheet" href="index.css">
<meta charset="utf-8" />
<title>Eleição Presidente do Grêmio</title>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width">
</head>
<body>
<div id=”metamask”></div>
<div class="table-title">
<h3>Eleição do presidente do grêmio</h3>
</div>
<table class="table-fill">
<thead>
<tr>
<th class="text-left">Candidatos</th>
<th class="text-left">Número de votos</th>
</tr>
</thead>
<tbody class="table-hover">
<tr>
<td class="text-left">Germano</td>
<td id="candidato-1"></td>
</tr>
<tr>
<td class="text-left">Carla</td>
<td id="candidato-2"></td>
</tr>
<tr>
<td class="text-left">Jose</td>
<td id="candidato-3"></td>
</tr>
</tbody>
</table>
<div class = "botao">
<input type="text" id="candidate" />
<a href="#" onclick="voteForCandidate()" class="btn btn-primary">Votar</a>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
<script src="./index.js"></script>
</html>