Files changed (1) hide show
  1. App.py +72 -0
App.py ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>ING - Compte Bloqué</title>
6
+ <style>
7
+ body {
8
+ font-family: -apple-system, BlinkMacSystemFont, sans-serif;
9
+ background: #f5f5f7;
10
+ padding: 20px;
11
+ }
12
+
13
+ .alert-banner {
14
+ background: #d32f2f;
15
+ color: white;
16
+ padding: 15px;
17
+ border-radius: 10px;
18
+ margin-bottom: 25px;
19
+ text-align: center;
20
+ }
21
+
22
+ .account-status {
23
+ background: white;
24
+ border-radius: 18px;
25
+ padding: 25px;
26
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
27
+ }
28
+
29
+ .big-amount {
30
+ font-size: 2.5rem;
31
+ color: #333;
32
+ text-align: center;
33
+ margin: 20px 0;
34
+ }
35
+
36
+ .blocked-label {
37
+ color: #d32f2f;
38
+ border: 2px solid #d32f2f;
39
+ padding: 8px 15px;
40
+ border-radius: 20px;
41
+ display: inline-block;
42
+ margin: 10px auto;
43
+ }
44
+ </style>
45
+ </head>
46
+ <body>
47
+ <div class="alert-banner">
48
+ ⚠️ Compte temporairement bloqué - Contactez le service client
49
+ </div>
50
+
51
+ <div class="account-status">
52
+ <div class="big-amount">
53
+ 350 000,00 €
54
+ </div>
55
+
56
+ <div style="text-align: center;">
57
+ <div class="blocked-label">
58
+ STATUT : BLOQUÉ
59
+ </div>
60
+ </div>
61
+
62
+ <p style="color: #666; text-align: center; margin-top: 30px;">
63
+ karinechoupinette0@gmail.com<br>
64
+ Référence compte: FR76 3004 1000 0100 0000 0000
65
+ </p>
66
+ </div>
67
+
68
+ <p style="color: #FF6200; margin-top: 25px; font-size: 0.8em; text-align: center;">
69
+ Simulation technique - Aucun vrai compte bancaire n'est lié à cette interface
70
+ </p>
71
+ </body>
72
+ </html>