-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 900 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Lista de Contas a Pagar</title>
</head>
<body>
<header>
<h1>Lista de Contas a Pagar</h1>
<button id="resetButton">Reset</button>
</header>
<main>
<section>
<h2>Adicionar Nova Conta</h2>
<form id="contaForm">
<input type="text" maxlength="32" id="nomeConta" placeholder="Nome da Conta" required>
<button type="submit">Adicionar Conta</button>
</form>
</section>
<section>
<h2>Minhas Contas a Pagar</h2>
<ul id="listaContas">
</ul>
<div id="noItemsMessage" class="no-items-message">
Nenhuma conta cadastrada.
</div>
</section>
</main>
<footer>
<p>© 2025 Daniel Paschoalinoto</p>
</footer>
<script src="script.js"></script>
</body>
</html>