-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcontasBancaria.html
86 lines (73 loc) · 2.99 KB
/
contasBancaria.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
<!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.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous" />
<link rel="stylesheet" href="./css/ContasBancos.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap" rel="stylesheet">
<title>Contas Bancarias</title>
</head>
<body>
<section id="sessão">
<div class="container">
<header>
<h1>Contas Bancarias</h1>
<h4>Preencha abaixo as informações</h4>
</header>
</div>
<div class="container">
<main>
<div class="container">
<form>
<div class="input-group mb-3 ">
<span class="input-group-text" id="inputGroup-sizing-default">CPF</span>
<input type="text" id="inputCPF" class="form-control" aria-label="Sizing example input"
aria-describedby="inputGroup-sizing-default" placeholder="Digite seu CPF ..." />
</div>
<div class="input-group mb-3 ">
<span class="input-group-text" id="inputGroup-sizing-default">Senha</span>
<input type="password" id="inputSenha" class="form-control" aria-label="Sizing example input"
aria-describedby="inputGroup-sizing-default" placeholder="Digite sua Senha" />
</div>
<button type="button" id="consultar" class="btn btn-success">Consultar</button>
</form>
<hr>
</div>
<br>
<section class="container">
<table class="table table-striped table-hover">
<thead class="table-success">
<tr>
<th scope="col">Conta Bancaria</th>
<th scope="col">Saldo Atual</th>
<th scope="col">Lançamentos Futuros</th>
</tr>
</thead>
<tbody>
<tbody id="conteudo-tabela">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</section>
</main>
</div>
</div>
</section>
<script src="scripts/ContasBancos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-mQ93GR66B00ZXjt0YO5KlohRA5SY2XofN4zfuZxLkoj1gXtW8ANNCe9d5Y3eG5eD"
crossorigin="anonymous"></script>
</body>
</html>