Aggiunto campo note nel form di aggiunta

This commit is contained in:
2025-12-04 09:10:58 +01:00
parent af1a64f2dc
commit ca08a3ced9

View File

@@ -11,7 +11,10 @@
<label for="name">Nome</label><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="prezzo" required><br><br>
<input type="number" step="0.01" id="price" name="prezzo" required><br>
<label for="note">Note</label><br>
<input type="text" id="note" name="note"><br>
<br><br>
<input type="submit" value="Aggiungi">
</form>
</body>