-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastrar-page.html
70 lines (56 loc) · 2.71 KB
/
cadastrar-page.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="CodeVision">
<link rel="icon" href="imagens/foto1.jpg" type="image/png">
<title>Sistema ERP-Mercadinho RPK</title>
<link rel="shortcut icon" type="image/x-con" href="#">
<link rel="stylesheet" href="style.css" />
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
</head>
<header>
<div id="doCabeçalho">
<h1 class="cabeçalho"><a class="links" href="template.html">Mercadinho RPK</a></h1>
</div>
<div id="daFoto">
<img id="foto1" src="imagens/rpklogo.jpeg" />
</div>
</header>
<body>
<h1 class="titulo">Cadastro de Produto</h1>
<form id="cadastro-form" action="/cadastro" method="POST">
<label for="nome" class="label-produto">Nome do Produto:</label><br>
<input type="text" id="nome" name="nome" class="input-produto" placeholder="Ex: Banana" required><br><br>
<label for="preco" class="label-produto">Preço de Venda:</label><br>
<input type="text" id="preco" name="preco" class="input-produto" placeholder="R$ 100,00" required><br><br>
<label for="codigo" class="label-produto">Código do Produto:</label><br>
<input type="text" id="codigo" name="codigo" class="input-produto" placeholder="Ex: 001" required><br><br>
<label for="quantidade" class="label-produto">Quantidade em Estoque:</label><br>
<input type="number" id="quantidade" name="estoque" class="input-produto" placeholder="Digite a quantidade" required><br><br>
<button type="submit" class="btn-cadastrar">Cadastrar Produto</button>
</form>
<div id="mensagem"></div> <!-- Para exibir mensagens de sucesso ou erro -->
<script>
$(document).ready(function() {
$('#cadastro-form').on('submit', function(event) {
event.preventDefault(); // Evita o comportamento padrão do formulário
$.ajax({
url: 'http://localhost:5000/cadastro',
type: 'POST',
data: $(this).serialize(),
success: function(response) {
toastr.success('Produto cadastrado com sucesso!');
$('#cadastro-form')[0].reset(); // Limpa o formulário
},
error: function(xhr, status, error) {
toastr.error('Ocorreu um erro. Tente novamente.');
}
});
});
});
</script>
</body>