omarbajouk's picture
Upload 4 files
61b8dea verified
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Assistant CPAS PDF</title>
<style>
body { font-family: sans-serif; max-width: 700px; margin: auto; padding-top: 40px; }
h1 { color: #444; }
.report { background: #eef; padding: 15px; border-radius: 5px; margin-top: 20px; }
</style>
</head>
<body>
<h1>πŸ“„ Assistant de Traitement des Notifications PDF</h1>
<form method="POST" enctype="multipart/form-data">
<label>Choisissez un fichier ZIP contenant les PDFs :</label><br>
<input type="file" name="zipfile" accept=".zip" required><br><br>
<button type="submit">πŸš€ Traiter les fichiers</button>
</form>
{% if report %}
<div class="report">
{{ report | safe }}
</div>
{% endif %}
</body>
</html>