Spaces:
Sleeping
Sleeping
| <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> |