0ec2620926
CI / PHP Syntax Check (push) Has been cancelled
CI / JavaScript Lint (push) Has been cancelled
CI / Docker Build Test (push) Has been cancelled
CI / Validate Translation Files (push) Has been cancelled
CI / Auto-merge develop → main (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
28 lines
932 B
HTML
28 lines
932 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>EverShelf - Test de Réconciliation</title>
|
|
<style>
|
|
body { font-family: sans-serif; background: #222; color: #eee; padding: 20px; }
|
|
.card { background: #444; padding: 20px; border-radius: 8px; }
|
|
table { width: 100%; border-collapse: collapse; background: #333; margin-top: 20px; }
|
|
th, td { border: 1px solid #555; padding: 10px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<h3>Modification en masse (Test)</h3>
|
|
<select id="cat-mass"></select>
|
|
<button id="save-btn" onclick="applyToSelected()">Appliquer aux cochés</button>
|
|
</div>
|
|
<table id="prod-table">
|
|
<tbody></tbody>
|
|
</table>
|
|
|
|
<script>
|
|
// Ton script de chargement reste inchangé ici...
|
|
// Dès que j'aurai ton cURL, je remplacerai la fonction applyToSelected()
|
|
</script>
|
|
</body>
|
|
</html> |