Testpdf / templates /free.html
Docfile's picture
Create free.html
1edb26e verified
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Restreinte - Abonnés Pro</title>
<style>
body {
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-color: #f0f0f0;
text-align: center;
}
.message-box {
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
margin-bottom: 15px;
}
p {
color: #555;
font-size: 1.1em;
}
</style>
</head>
<body>
<div class="message-box">
<h1>Accès Restreint</h1>
<p>Bonjour, pour l'instant, Cette page est disponible uniquement pour les abonnés pro.</p>
</div>
</body>
</html>