templates/home_page/legal_notice.html.twig line 1

Open in your IDE?
  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.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.     <meta name="description" content="Mentions légales de Skolya, plateforme de gestion scolaire éditée par ETS G-TECH.">
  8.     <meta name="author" content="G-Tech">
  9.     <link rel="icon" href="{{asset('assets/images/icon.png')}}" type="image/png">
  10.     <title>Mentions Légales - Skolya</title>
  11.     <style>
  12.         /* Conservation du design exact de ta page Privacy */
  13.         body {
  14.             font-family: 'Arial', sans-serif;
  15.             line-height: 1.6;
  16.             color: #333;
  17.             margin: 0;
  18.             padding: 0;
  19.             background-color: #f4f4f4;
  20.         }
  21.         header {
  22.             background-color: #1e3a8a;
  23.             color: white;
  24.             text-align: center;
  25.             padding: 2rem 0;
  26.         }
  27.         header h1 {
  28.             margin: 0;
  29.             font-size: 2.5rem;
  30.         }
  31.         .container {
  32.             max-width: 800px;
  33.             margin: 2rem auto;
  34.             padding: 1.5rem;
  35.             background: white;
  36.             box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  37.             border-radius: 8px;
  38.         }
  39.         h2 {
  40.             color: #1e3a8a;
  41.             margin-top: 2rem;
  42.             border-bottom: 2px solid #f4f4f4;
  43.             padding-bottom: 0.5rem;
  44.         }
  45.         p {
  46.             margin: 1rem 0;
  47.         }
  48.         .highlight {
  49.             font-weight: bold;
  50.             color: #1e3a8a;
  51.         }
  52.         footer {
  53.             text-align: center;
  54.             padding: 1rem;
  55.             background-color: #1e3a8a;
  56.             color: white;
  57.             margin-top: 2rem;
  58.         }
  59.         @media (max-width: 600px) {
  60.             header h1 { font-size: 1.8rem; }
  61.             .container { margin: 1rem; padding: 1rem; }
  62.         }
  63.     </style>
  64. </head>
  65. <body>
  66.     <header>
  67.         <h1>Skolya - Mentions Légales</h1>
  68.     </header>
  69.     <div class="container">
  70.         <h2>1. Éditeur du service</h2>
  71.         <p>
  72.             Le site web et l'application <strong>Skolya</strong> sont édités par l'entreprise : <br>
  73.             <span class="highlight">ETS G-TECH</span><br>
  74.             Siège social : Yaoundé, Cameroun<br>
  75.             Numéro d'Identifiant Unique (NIU) : P010116618251C<br>
  76.             Registre du Commerce (RCCM) : CM-NSI-01-2025-A10-01324<br>
  77.             Téléphone : +237 696 864 017 / 673 908 557 / 677 507 399 / 622 125 542
  78.         </p>
  79.         <h2>2. Responsable de la publication</h2>
  80.         <p>
  81.             Le responsable de la publication est le promoteur de <strong>ETS G-TECH</strong>.
  82.         </p>
  83.         <h2>3. Hébergement</h2>
  84.         <p>
  85.             Le service est hébergé sur des infrastructures de serveurs privés (VPS), configurés et gérés par ETS G-TECH via les services de Hostinger.
  86.         </p>
  87.         <h2>4. Propriété intellectuelle</h2>
  88.         <p>
  89.             L'ensemble du contenu (textes, logos, architecture logicielle, interfaces) de la plateforme Skolya est la propriété exclusive de <span class="highlight">ETS G-TECH</span>. Toute reproduction ou distribution non autorisée est strictement interdite.
  90.         </p>
  91.         <h2>5. Protection des données personnelles</h2>
  92.         <p>
  93.             Conformément à notre <a href="{{ path('app_privacy') }}" style="color: #2563eb; text-decoration: underline;">Politique de Confidentialité</a>, ETS G-TECH s'engage à protéger les données des élèves et des parents collectées via Skolya.
  94.         </p>
  95.         <h2>6. Contact</h2>
  96.         <p>
  97.             Pour toute question relative aux mentions légales, vous pouvez nous contacter par téléphone ou à l'adresse de notre siège social à Maroua.
  98.         </p>
  99.     </div>
  100.     <footer>
  101.         <p>© 2026 Skolya par <strong>ETS G-TECH</strong>. Tous droits réservés.</p>
  102.     </footer>
  103. </body>
  104. </html>