File size: 767 Bytes
61b8dea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!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>