-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
50 lines (39 loc) · 1.32 KB
/
index.php
File metadata and controls
50 lines (39 loc) · 1.32 KB
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
<?php
/**
* User: Eduardo Kraus
* Date: 13/11/2024
* Time: 12:52
*/
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exemplo com jQuery e Bootstrap</title>
<!-- Link para o CSS do Bootstrap -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Link para o jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Link para o JavaScript do Bootstrap (necessário após o jQuery) -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class="container mt-5">
<div class="container mt-5">
<h1>Seleção de Partidos</h1>
<p>Escolha um partido da lista:</p>
<!-- Caixa de seleção para partidos -->
<select id="partidos" class="form-control">
<option value="">Selecione um partido</option>
</select>
</div>
<!-- Seção para exibir os deputados do partido selecionado -->
<div id="deputados-block" class="mt-3" style="display: none">
<h2>Deputados</h2>
<div id="deputados-list" class="row"></div>
</div>
</div>
</body>
</html>