-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcandidatos.html
48 lines (41 loc) · 1.81 KB
/
candidatos.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
<!DOCTYPE html>
<html>
<head>
<title>Candidatos Cadastrados</title>
<link rel="stylesheet" href="./css/styleCandidatos.css">
</head>
<body>
<script src="js/verifica_usuario.js"></script>
<div class="navbar">
<a href="index.html">Home</a>
<a href="cadastro.html">Cadastro</a>
<a href="candidatos.html">Candidatos</a>
</div>
<h1>LISTA DE CANDIDATOS CADASTRADOS</h1>
<div id="candidatos"></div>
<div id="modalEditarCandidato" class="modal">
<div class="modal-content">
<span class="close" onclick="document.getElementById('modalEditarCandidato').style.display='none'">×</span>
<h4>Editar Candidato</h4>
<label for="cargo">Cargo:</label>
<select id="cargo" name="cargo" required>
<option value="">Selecione um cargo</option>
<option value="VICE-REPRESENTANTE">Vice-representante</option>
<option value="REPRESENTANTE">Representante</option>
</select><br>
<label for="numero">Número:</label>
<input type="text" id="numero" name="numero">
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome">
<label for="partido">Partido:</label>
<input type="text" id="partido" name="partido">
<button id="salvar">Salvar</button>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/8.2.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.1/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.1/firebase-storage.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="module" src="js/candidatos.js"></script>
</body>
</html>