Spaces:
Sleeping
Sleeping
add for valide term and privacy
Browse files- app/static/terms.html +91 -0
app/static/terms.html
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>Conditions d'utilisation - Gerelui</title>
|
| 7 |
+
|
| 8 |
+
<style>
|
| 9 |
+
body {
|
| 10 |
+
font-family: Arial, sans-serif;
|
| 11 |
+
margin: 0;
|
| 12 |
+
background: #020617;
|
| 13 |
+
color: #e2e8f0;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
.container {
|
| 17 |
+
max-width: 900px;
|
| 18 |
+
margin: auto;
|
| 19 |
+
padding: 40px 20px;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
h1 {
|
| 23 |
+
color: #f59e0b;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
h2 {
|
| 27 |
+
margin-top: 30px;
|
| 28 |
+
color: #38bdf8;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.card {
|
| 32 |
+
background: #1e293b;
|
| 33 |
+
padding: 25px;
|
| 34 |
+
border-radius: 12px;
|
| 35 |
+
margin-top: 20px;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
.footer {
|
| 39 |
+
text-align: center;
|
| 40 |
+
margin-top: 40px;
|
| 41 |
+
opacity: 0.6;
|
| 42 |
+
}
|
| 43 |
+
</style>
|
| 44 |
+
</head>
|
| 45 |
+
|
| 46 |
+
<body>
|
| 47 |
+
|
| 48 |
+
<div class="container">
|
| 49 |
+
<h1>📜 Conditions d'utilisation</h1>
|
| 50 |
+
|
| 51 |
+
<div class="card">
|
| 52 |
+
<p>Bienvenue sur <strong>Gerelui</strong>. En utilisant notre service, vous acceptez les conditions suivantes.</p>
|
| 53 |
+
</div>
|
| 54 |
+
|
| 55 |
+
<div class="card">
|
| 56 |
+
<h2>1. Utilisation du service</h2>
|
| 57 |
+
<p>Vous acceptez d'utiliser la plateforme uniquement à des fins légales.</p>
|
| 58 |
+
</div>
|
| 59 |
+
|
| 60 |
+
<div class="card">
|
| 61 |
+
<h2>2. Comptes utilisateurs</h2>
|
| 62 |
+
<p>Vous êtes responsable de la sécurité de votre compte et de vos identifiants.</p>
|
| 63 |
+
</div>
|
| 64 |
+
|
| 65 |
+
<div class="card">
|
| 66 |
+
<h2>3. Intégrations tierces</h2>
|
| 67 |
+
<p>Notre service utilise des API tierces (TikTok, Meta, etc.). Vous acceptez leurs conditions respectives.</p>
|
| 68 |
+
</div>
|
| 69 |
+
|
| 70 |
+
<div class="card">
|
| 71 |
+
<h2>4. Responsabilité</h2>
|
| 72 |
+
<p>Nous ne sommes pas responsables des pertes ou dommages liés à l'utilisation du service.</p>
|
| 73 |
+
</div>
|
| 74 |
+
|
| 75 |
+
<div class="card">
|
| 76 |
+
<h2>5. Modification</h2>
|
| 77 |
+
<p>Nous pouvons modifier ces conditions à tout moment.</p>
|
| 78 |
+
</div>
|
| 79 |
+
|
| 80 |
+
<div class="card">
|
| 81 |
+
<h2>6. Contact</h2>
|
| 82 |
+
<p>Email : contact@gerelui.com</p>
|
| 83 |
+
</div>
|
| 84 |
+
|
| 85 |
+
<div class="footer">
|
| 86 |
+
<p>© 2026 Gerelui. Tous droits réservés.</p>
|
| 87 |
+
</div>
|
| 88 |
+
</div>
|
| 89 |
+
|
| 90 |
+
</body>
|
| 91 |
+
</html>
|