-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
73 lines (60 loc) · 2.75 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
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
<!DOCTYPE html>
<html lang="es" data-bs-theme="auto">
<head>
<title>RITSI - Recuento de votos</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta name="description" content="Recuento de votos de la Asociación RITSI">
<meta name="keywords" content="RITSI, votos, recuento">
<meta name="author" content="Asociación RITSI">
<link rel="icon" href="logoritsi.png" type="image/png">
<link href='https://fonts.googleapis.com/css?family=Exo' rel='stylesheet'>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="css/buttons-min.css">
<link rel="stylesheet" href="css/some.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
<body>
<div class="container mt-4">
<nav class="navbar">
<div class="container d-flex flex-wrap align-items-center text-start">
<a class="navbar-brand d-flex flex-row align-items-center w-100" href="/index.html">
<img src="/logoritsi.png" alt="Logo RITSI" class="img-fluid me-3" style="max-width: 100px;">
<div class="text-start">
<h1 class="h4 m-0">Recuento de votos</h1>
<h3 class="h6 m-0 text-muted">by RITSI</h3>
</div>
</a>
</div>
</nav>
<div class="content">
<ul class="list-inline" id="lista">
</ul>
</div>
<h1 id="question" class="ritsi-red"></h1>
<div class="row">
<div class="recogida-info" id="input">
<input type="text" id="title" placeholder="Título votación"> <br>
<div id="voteOptions">
<input type="text" id="o1" placeholder="Opción 1">
</div>
<div class="button-xlarge col-lg-12 col-centered">
<button class="btn btn-outline-ritsi" type="submit" onclick="addEntries()" id="addEntrie"> Añadir opción</button>
<button class="btn btn-outline-ritsi" type="submit" onclick="generatePoll()">Pasar a recuento</button>
</div>
</div>
<div class="col-lg-12" id="col-lg-12" style="display:none">
<h4>Votos emitidos
<span id="votos-emitidos">0</span>
</h4>
<div id="option-container" class="mt-4">
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="js/core-dyn.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>