Rimosso ID Pizza da form di aggiunta

This commit is contained in:
2025-12-04 09:06:48 +01:00
parent e67df056b6
commit 084cbb2b5f
2 changed files with 4 additions and 8 deletions

View File

@@ -8,12 +8,10 @@
</head>
<body>
<form id="addForm" onsubmit="handleAddPizza(event)" >
<label for="id">ID Pizza</label><br>
<input type="number" id="id" name="id" required><br>
<label for="name">Nome</label><br>
<input type="text" id="name" name="name" required><br>
<input type="text" id="name" name="nome" required><br>
<label for="prezzo">Prezzo</label><br>
<input type="number" step="0.01" id="price" name="price" required><br><br>
<input type="number" step="0.01" id="price" name="prezzo" required><br><br>
<input type="submit" value="Aggiungi">
</form>
</body>