-
Notifications
You must be signed in to change notification settings - Fork 0
/
maintenance.html
149 lines (140 loc) · 5.31 KB
/
maintenance.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simulatore di Nutrienti e Calorie</title>
<link rel="stylesheet" href="css/main.css">
<link rel="icon" href="logo.ico" type="image/x-icon">
</head>
<body>
<header>
<h1>Simulatore di Nutrienti e Calorie per la Pizza</h1>
</header>
<!-- Navigazione -->
<nav>
<div class="nav-container">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="tipi-di-pizza.html">Tipi di Pizza</a></li>
<li><a href="prefermenti_e_farine.html">Prefermenti e Farine</a></li>
<li><a href="calcolatore.html">Calcolatore</a></li>
<li><a href="assistente.html">Assistente</a></li>
<li><a href="contatti.html">Contatti</a></li>
<li><a href="https://pizzalab.bettermode.io/" target="_blank" rel="noopener noreferrer">PizzaLab Community</a></li>
<li><a href="simulator.html">Nutrienti e calorie</a></li>
<li><a href="shop.html">Shop</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<main>
<!-- Selezione del Tipo di Pizza -->
<section>
<h2>Seleziona Tipo di Pizza</h2>
<select id="tipo-pizza">
<option value="" disabled selected>Seleziona un tipo di pizza...</option>
<!-- Opzioni popolate dinamicamente -->
</select>
</section>
<!-- Ricetta Base -->
<section>
<h2>Ricetta Base dell'Impasto</h2>
<ul id="ricetta-base">
<!-- Ingredienti base visualizzati dinamicamente -->
</ul>
</section>
<!-- Procedimento -->
<section>
<h2>Procedimento</h2>
<ol id="procedimento">
<!-- Passi del procedimento visualizzati dinamicamente -->
</ol>
</section>
<!-- Valori Nutrizionali Base -->
<section>
<h2>Valori Nutrizionali Base</h2>
<table>
<thead>
<tr>
<th>Calorie</th>
<th>Grassi (g)</th>
<th>Carboidrati (g)</th>
<th>Zuccheri (g)</th>
<th>Fibre (g)</th>
<th>Proteine (g)</th>
<th>Sale (g)</th>
</tr>
</thead>
<tbody>
<tr>
<td id="calorie-base">0</td>
<td id="grassi-base">0</td>
<td id="carboidrati-base">0</td>
<td id="zuccheri-base">0</td>
<td id="fibre-base">0</td>
<td id="proteine-base">0</td>
<td id="sale-base">0</td>
</tr>
</tbody>
</table>
</section>
<!-- Aggiungi Ingredienti Extra -->
<section>
<h2>Aggiungi Ingredienti Extra</h2>
<select id="ingredienti-selezione">
<option value="" disabled selected>Seleziona un ingrediente...</option>
<!-- Opzioni popolate dinamicamente -->
</select>
<input type="number" id="quantita-ingrediente" placeholder="Quantità (g)" min="1">
<button id="aggiungi-ingrediente">Aggiungi</button>
</section>
<!-- Ingredienti Aggiunti -->
<section>
<h2>Ingredienti Aggiunti</h2>
<ul id="lista-ingredienti">
<!-- Lista aggiornata dinamicamente -->
</ul>
</section>
<!-- Valori Nutrizionali Totali -->
<section>
<h2>Valori Nutrizionali Totali</h2>
<table>
<thead>
<tr>
<th>Calorie</th>
<th>Grassi (g)</th>
<th>Carboidrati (g)</th>
<th>Zuccheri (g)</th>
<th>Fibre (g)</th>
<th>Proteine (g)</th>
<th>Sale (g)</th>
</tr>
</thead>
<tbody>
<tr>
<td id="calorie-totali">0</td>
<td id="grassi-totali">0</td>
<td id="carboidrati-totali">0</td>
<td id="zuccheri-totali">0</td>
<td id="fibre-totali">0</td>
<td id="proteine-totali">0</td>
<td id="sale-totale">0</td>
</tr>
</tbody>
</table>
</section>
</main>
<footer>
<p>© 2024 PizzaLab</p>
</footer>
<!-- Importare simulator.js e main.js -->
<script src="js/cookies.js" defer></script>
<script src="js/simulator.js" defer></script> <!-- Script per la logica del simulatore -->
<script src="js/main.js" defer></script> <!-- Script per il menu hamburger -->
</body>
</html>