Docfile commited on
Commit
1edb26e
·
verified ·
1 Parent(s): 374a6fd

Create free.html

Browse files
Files changed (1) hide show
  1. templates/free.html +40 -0
templates/free.html ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Page Restreinte - Abonnés Pro</title>
7
+ <style>
8
+ body {
9
+ font-family: sans-serif;
10
+ display: flex;
11
+ justify-content: center;
12
+ align-items: center;
13
+ min-height: 100vh;
14
+ margin: 0;
15
+ background-color: #f0f0f0;
16
+ text-align: center;
17
+ }
18
+ .message-box {
19
+ background-color: #fff;
20
+ padding: 30px;
21
+ border-radius: 8px;
22
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
23
+ }
24
+ h1 {
25
+ color: #333;
26
+ margin-bottom: 15px;
27
+ }
28
+ p {
29
+ color: #555;
30
+ font-size: 1.1em;
31
+ }
32
+ </style>
33
+ </head>
34
+ <body>
35
+ <div class="message-box">
36
+ <h1>Accès Restreint</h1>
37
+ <p>Bonjour, pour l'instant, Cette page est disponible uniquement pour les abonnés pro.</p>
38
+ </div>
39
+ </body>
40
+ </html>