54 lines
1.5 KiB
HTML
54 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Calculateur de Prix</title>
|
|
</head>
|
|
<body>
|
|
<!-- Section fixe en haut -->
|
|
<div class="header">
|
|
<div id="datetime"></div>
|
|
<div class="header-row">
|
|
<p>Montant Précédent: <span id="previous-amount">0.00 €</span></p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bouton "+" toujours visible -->
|
|
<div id="add-row-container">
|
|
<button id="add-row" class="add-row-button">+</button>
|
|
</div>
|
|
|
|
<!-- Section centrale défilante -->
|
|
<div class="articles">
|
|
<div id="articles-scroll">
|
|
<table id="articles-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Montant (€)</th>
|
|
<th>Qtité</th>
|
|
<th>Total</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Section fixe en bas -->
|
|
<div class="footer">
|
|
<div class="footer-content">
|
|
<div class="totals">
|
|
<p>Total Articles: <span id="article-total">0.00 €</span></p>
|
|
<p>Total Final: <span id="final-total">0.00 €</span></p>
|
|
</div>
|
|
<button id="save">Enregistrer</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|