21 lines
708 B
HTML
21 lines
708 B
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Aggiungi pizza</title>
|
|
<script src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<form id="addForm" onsubmit="handleAddPizza(event)" >
|
|
<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>
|
|
<label for="note">Note</label><br>
|
|
<input type="text" id="note" name="note"><br>
|
|
<br><br>
|
|
<input type="submit" value="Aggiungi">
|
|
</form>
|
|
</body>
|
|
</html> |