templates/default/mention.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}HackLock - Cyber Escape Game
  3. {% endblock %}
  4. {% block body %}
  5.     <style>
  6.         .centered-container {
  7.             max-width: 800px; /* Adjust the max-width to the desired width */
  8.             margin: 0 auto;   /* This centers the container */
  9.             padding: 40px 15px;  /* Optional: Add some padding for better appearance */
  10.         }
  11.         main {
  12.             /* min-height: 65vh; */
  13.             padding-top: 6rem;
  14.         }
  15.         .page-title{
  16.             background-color:#B0DB82;
  17.             padding: 30px;
  18.         }
  19.     </style>
  20.     <!-- Pageloader -->
  21.     <!-- Main Header -->
  22.     <main>
  23.         <section class="page-title" data-aos="zoom-out">
  24.             <div class="container">
  25.                 <h1 class="mb-0">Mentions
  26.                     <span class="txt-gradient">Légales</span>
  27.                 </h1>
  28.             </div>
  29.         </section>
  30.         <section class="about-us-section-five">
  31.             <div class="auto-container centered-container">
  32.                 <div class="row align-items-center">
  33.                     <div class="col-sm-12">
  34.                         <h3>
  35.                             <em>
  36.                                 <strong>MODIXOM</strong>
  37.                             </em>
  38.                         </h3>
  39.                         <br>
  40.                         <p>Directeur : M. GAYET
  41.                             <br>
  42.                             Tél : +33 (0)6 43 38 65 29
  43.                             <br>
  44.                             Email : contact@modixom.fr
  45.                         </p>
  46.                         <br>
  47.                         <h3>
  48.                             <em>
  49.                                 <strong>Directeur de Publication :</strong>
  50.                             </em>
  51.                         </h3>
  52.                         <br>
  53.                         <p>M. GAYET</p>
  54.                         <br>
  55.                         <h3>
  56.                             <em>
  57.                                 <strong>Hébergement&nbsp;:</strong>
  58.                             </em>
  59.                         </h3>
  60.                         <br>
  61.                         <p>OVH SAS
  62.                             <br>
  63.                             2 rue Kellermann - 59100 Roubaix - France
  64.                             <br>
  65.                             <a href="https://www.ovh.com/fr/" target="_blank" rel="noopener noreferrer">https://www.ovh.com/fr/</a>
  66.                         </p>
  67.                         <br>
  68.                         <h3>
  69.                             <em>
  70.                                 <strong>CNIL&nbsp;:</strong>
  71.                             </em>
  72.                         </h3>
  73.                         <br>
  74.                         <p>Loi N° 78-17 du 6 Janvier 1978 relative à l’informatique, aux fichiers et aux libertés.
  75.                             <br>
  76.                             En regard de la loi 78-17 du 6 Janvier 1978, vous disposez d’un droit d’accès et de rectification aux données personnelles vous concernant. Vous pouvez vous opposer
  77.                             <br>
  78.                             à ce que vos noms et adresses soient mis à disposition d’autres sociétés.
  79.                             <br>
  80.                             Pour cela il suffit de nous en faire la demande en nous adressant un mail à l'adresse «contact@modixom.fr»<!-- ou à l’adresse suivante :
  81.                             <br>
  82.                             7 RUE EDOUARD BELIN 57070 METZ-->
  83.                         </p>
  84.                     </div>
  85.                 </div>
  86.             </div>
  87.         </section>
  88.     </main>
  89. {% endblock %}