-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastroLivro.html
67 lines (57 loc) · 2.11 KB
/
cadastroLivro.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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Cadastro</title>
<link rel="stylesheet" href="livros.css">
</head>
<body>
<header>
<div class="cabeca">
<nav>
<ul>
<li><a href="index.html">Página Principal</a></li>
<li><a href="livraria.html">Cadastrar Usuário</a></li>
<li><a href="cadastroLivro.html">Cadastrar Livro</a></li>
</ul>
</nav>
</div>
</header>
<h1>Cadastro de Produtos</h1>
<form id="produtoForm">
<label for="nomeProduto">Nome do Produto:</label>
<input type="text" id="nomeProduto" required>
<label for="productPrice">Preço do Produto:</label>
<input type="number" id="productPrice" required>
<button type="button" onclick="addProduct()">Adicionar Produto</button>
</form>
<h1>Produtos Cadastrados:</h1>
<table>
<thead>
<tr>
<th>Nome do Produto</th>
<th>Preço do Produto</th>
</tr>
</thead>
<tbody id="listaProduto"></tbody>
</table>
<script>
function addProduct() {
const nomeProduto = document.getElementById("nomeProduto").value;
const productPrice = document.getElementById("productPrice").value;
if (nomeProduto && productPrice) {
const listaProduto = document.getElementById("listaProduto");
const newRow = listaProduto.insertRow();
const cell1 = newRow.insertCell(0);
cell1.innerHTML = nomeProduto;
const cell2 = newRow.insertCell(1);
cell2.innerHTML = `R$ ${parseFloat(productPrice).toFixed(2)}`;
document.getElementById("nomeProduto").value = "";
document.getElementById("productPrice").value = "";
}
}
</script>
</body>
</html>