last updates
This commit is contained in:
parent
1a59bcf2b0
commit
605fc89177
6 changed files with 606 additions and 199 deletions
|
|
@ -9,7 +9,6 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!-- Sezione Login -->
|
||||
<div id="login-section">
|
||||
<h2>Login</h2>
|
||||
|
|
@ -21,13 +20,17 @@
|
|||
</div>
|
||||
|
||||
<!-- Sezione per scegliere il metodo di pagamento -->
|
||||
<div id="payment-method-section">
|
||||
<div id="payment-method-section" style="display: none;">
|
||||
<h3>Seleziona metodo di pagamento:</h3>
|
||||
<label>
|
||||
<input type="radio" name="payment-method" value="Cash" checked> Cash
|
||||
<label class="payment-option">
|
||||
<input type="radio" name="payment-method" value="Cash" checked>
|
||||
<span class="radio-custom"></span>
|
||||
<div class="payment-text">Cash</div>
|
||||
</label>
|
||||
<label>
|
||||
<input type="radio" name="payment-method" value="PayPal"> PayPal
|
||||
<label class="payment-option">
|
||||
<input type="radio" name="payment-method" value="PayPal">
|
||||
<span class="radio-custom"></span>
|
||||
<div class="payment-text">PayPal</div>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
|
|
@ -40,19 +43,20 @@
|
|||
<div id="order-items"></div>
|
||||
<p>Totale: \u20ac <span id="total-price">0</span></p>
|
||||
|
||||
|
||||
|
||||
<button id="confirm-order-btn">Conferma Ordine</button>
|
||||
<button id="show-summary-btn">Mostra Riepilogo</button>
|
||||
</div>
|
||||
|
||||
<!-- Riepilogo Ordine -->
|
||||
<div id="order-summary" style="display:none;">
|
||||
<h2>Riepilogo Ordine</h2>
|
||||
<div id="order-details"></div>
|
||||
<button id="back-to-order-btn">Torna al carrello</button>
|
||||
<p><strong>Metodo di pagamento:</strong> <span id="summary-payment-method"></span></p>
|
||||
<p><strong>Totale:</strong> <span id="summary-total-price"></span> EUR</p>
|
||||
<ul id="summary-products"></ul>
|
||||
<button id="confirm-order-btn">Conferma Ordine</button>
|
||||
<button id="cancel-order-btn">Annulla</button>
|
||||
</div>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue