-
Notifications
You must be signed in to change notification settings - Fork 0
/
alta_productos.html
110 lines (91 loc) · 4.03 KB
/
alta_productos.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name="description" content="Sitio web de adopción de mascotas">
<title>Adóptame - Admin</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="icon" type="image/jpg" href="img/favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon/favicon-16x16.png">
<link rel='stylesheet' type='text/css' media='screen' href='css/styles_admin.css'>
<script>
var isLoggedIn = localStorage.getItem('isLoggedIn');
var username = localStorage.getItem('username');
if (!isLoggedIn) {
location.href = 'login.html';
}
</script>
</head>
<body>
<div id="header_admin"></div>
<h3>Alta de productos</h3><br>
<form id="formulario">
<label for="codigo">Código:</label>
<input type="text" id="codigo" name="codigo" required><br>
<label for="descripcion">Descripción:</label>
<input type="text" id="descripcion" name="descripcion" required><br>
<label for="cantidad">Cantidad:</label>
<input type="number" id="cantidad" name="cantidad" required><br>
<label for="precio">Precio:</label>
<input type="number" step="0.01" id="precio" name="precio" required><br>
<div class="contenedor-centrado">
<button type="submit">Agregar Producto</button>
<a href="admin.html">Menú principal</a>
</div>
</form>
<script>
// const URL = "http://127.0.0.1:5000/"
const URL = "https://fabianescobar.pythonanywhere.com/"
document.getElementById('formulario').addEventListener('submit', function (event) {
event.preventDefault() // Evitamos que se recargue la página
var codigo = document.getElementById('codigo').value
var descripcion = document.getElementById('descripcion').value
var cantidad = document.getElementById('cantidad').value
var precio = document.getElementById('precio').value
var producto = {
codigo: codigo,
descripcion: descripcion,
cantidad: cantidad,
codigo: codigo,
descripcion: descripcion,
cantidad: cantidad,
precio: precio
}
console.log(producto)
fetch(URL + 'productos', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(producto)
})
.then(function (response) {
if (response.ok) {
return response.json()
} else {
throw new Error('Error al agregar el producto.')
}
})
.then(function (data) {
alert('Producto agregado correctamente.')
document.getElementById('codigo').value = ""
document.getElementById('descripcion').value = ""
document.getElementById('cantidad').value = ""
document.getElementById('precio').value = ""
})
.catch(function (error) {
console.log('Error:', error)
alert('Error al agregar el producto.')
})
})
</script>
<div id="footer_admin"></div>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"
integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8=" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/84ee914179.js" crossorigin="anonymous"></script>
<script src="js/scripts_admin.js"></script>
</body>
</html>