templates/default/index.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.     <title>Chiffrage School - Plateforme de Gestion Scolaire</title>
  7.     <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
  8.     <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
  9.     <style>
  10.         :root {
  11.             --primary-color: #2c3e50;
  12.             --secondary-color: #3498db;
  13.             --accent-color: #e74c3c;
  14.             --light-bg: #ecf0f1;
  15.             --dark-text: #2c3e50;
  16.         }
  17.         
  18.         body {
  19.             font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  20.             line-height: 1.6;
  21.         }
  22.         
  23.         .hero-section {
  24.             background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  25.             color: white;
  26.             padding: 100px 0;
  27.             position: relative;
  28.             overflow: hidden;
  29.         }
  30.         
  31.         @media (max-width: 768px) {
  32.             .hero-section {
  33.                 padding: 80px 0 60px 0;
  34.             }
  35.         }
  36.         
  37.         .hero-section::before {
  38.             content: '';
  39.             position: absolute;
  40.             top: 0;
  41.             left: 0;
  42.             right: 0;
  43.             bottom: 0;
  44.             background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  45.             opacity: 0.3;
  46.         }
  47.         
  48.         .hero-content {
  49.             position: relative;
  50.             z-index: 2;
  51.         }
  52.         
  53.         .feature-card {
  54.             background: white;
  55.             border-radius: 15px;
  56.             padding: 30px;
  57.             margin: 20px 0;
  58.             box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  59.             transition: transform 0.3s ease, box-shadow 0.3s ease;
  60.             border: none;
  61.             height: 100%;
  62.         }
  63.         
  64.         @media (max-width: 768px) {
  65.             .feature-card {
  66.                 padding: 20px;
  67.                 margin: 10px 0;
  68.             }
  69.         }
  70.         
  71.         .feature-card:hover {
  72.             transform: translateY(-5px);
  73.             box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  74.         }
  75.         
  76.         .feature-icon {
  77.             width: 80px;
  78.             height: 80px;
  79.             background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  80.             border-radius: 50%;
  81.             display: flex;
  82.             align-items: center;
  83.             justify-content: center;
  84.             margin: 0 auto 20px;
  85.             color: white;
  86.             font-size: 2rem;
  87.         }
  88.         
  89.         @media (max-width: 768px) {
  90.             .feature-icon {
  91.                 width: 60px;
  92.                 height: 60px;
  93.                 font-size: 1.5rem;
  94.             }
  95.         }
  96.         
  97.         .cta-button {
  98.             background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  99.             border: none;
  100.             padding: 15px 40px;
  101.             border-radius: 50px;
  102.             color: white;
  103.             font-weight: bold;
  104.             text-decoration: none;
  105.             transition: all 0.3s ease;
  106.             display: inline-block;
  107.         }
  108.         
  109.         @media (max-width: 768px) {
  110.             .cta-button {
  111.                 padding: 12px 30px;
  112.                 font-size: 0.9rem;
  113.             }
  114.         }
  115.         
  116.         .cta-button:hover {
  117.             transform: translateY(-2px);
  118.             box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
  119.             color: white;
  120.             text-decoration: none;
  121.         }
  122.         
  123.         .navbar {
  124.             background: rgba(44, 62, 80, 0.95) !important;
  125.             backdrop-filter: blur(10px);
  126.         }
  127.         
  128.         .navbar-toggler {
  129.             border: none;
  130.             padding: 0.25rem 0.5rem;
  131.         }
  132.         
  133.         .navbar-toggler:focus {
  134.             box-shadow: none;
  135.         }
  136.         
  137.         .navbar-nav .nav-link {
  138.             padding: 0.5rem 1rem;
  139.             transition: color 0.3s ease;
  140.         }
  141.         
  142.         .navbar-nav .nav-link:hover {
  143.             color: var(--secondary-color) !important;
  144.         }
  145.         
  146.         .stats-section {
  147.             background: var(--light-bg);
  148.             padding: 80px 0;
  149.         }
  150.         
  151.         @media (max-width: 768px) {
  152.             .stats-section {
  153.                 padding: 60px 0;
  154.             }
  155.         }
  156.         
  157.         .stat-item {
  158.             text-align: center;
  159.             padding: 20px;
  160.         }
  161.         
  162.         @media (max-width: 768px) {
  163.             .stat-item {
  164.                 padding: 15px;
  165.             }
  166.         }
  167.         
  168.         .stat-number {
  169.             font-size: 3rem;
  170.             font-weight: bold;
  171.             color: var(--secondary-color);
  172.         }
  173.         
  174.         @media (max-width: 768px) {
  175.             .stat-number {
  176.                 font-size: 2.5rem;
  177.             }
  178.         }
  179.         
  180.         .footer {
  181.             background: var(--primary-color);
  182.             color: white;
  183.             padding: 40px 0 20px;
  184.         }
  185.         
  186.         @media (max-width: 768px) {
  187.             .footer {
  188.                 padding: 30px 0 15px;
  189.             }
  190.         }
  191.         
  192.         .floating-shapes {
  193.             position: absolute;
  194.             width: 100%;
  195.             height: 100%;
  196.             overflow: hidden;
  197.             z-index: 1;
  198.         }
  199.         
  200.         .shape {
  201.             position: absolute;
  202.             background: rgba(255,255,255,0.1);
  203.             border-radius: 50%;
  204.             animation: float 6s ease-in-out infinite;
  205.         }
  206.         
  207.         .shape:nth-child(1) {
  208.             width: 80px;
  209.             height: 80px;
  210.             top: 20%;
  211.             left: 10%;
  212.             animation-delay: 0s;
  213.         }
  214.         
  215.         .shape:nth-child(2) {
  216.             width: 120px;
  217.             height: 120px;
  218.             top: 60%;
  219.             right: 10%;
  220.             animation-delay: 2s;
  221.         }
  222.         
  223.         .shape:nth-child(3) {
  224.             width: 60px;
  225.             height: 60px;
  226.             top: 40%;
  227.             left: 50%;
  228.             animation-delay: 4s;
  229.         }
  230.         
  231.         @media (max-width: 768px) {
  232.             .shape:nth-child(1) {
  233.                 width: 40px;
  234.                 height: 40px;
  235.             }
  236.             
  237.             .shape:nth-child(2) {
  238.                 width: 60px;
  239.                 height: 60px;
  240.             }
  241.             
  242.             .shape:nth-child(3) {
  243.                 width: 30px;
  244.                 height: 30px;
  245.             }
  246.         }
  247.         
  248.         @keyframes float {
  249.             0%, 100% { transform: translateY(0px); }
  250.             50% { transform: translateY(-20px); }
  251.         }
  252.         
  253.         /* Améliorations pour mobile */
  254.         @media (max-width: 576px) {
  255.             .display-4 {
  256.                 font-size: 2.5rem;
  257.             }
  258.             
  259.             .display-5 {
  260.                 font-size: 2rem;
  261.             }
  262.             
  263.             .display-6 {
  264.                 font-size: 1.75rem;
  265.             }
  266.             
  267.             .lead {
  268.                 font-size: 1rem;
  269.             }
  270.             
  271.             .btn-lg {
  272.                 padding: 0.75rem 1.5rem;
  273.                 font-size: 1rem;
  274.             }
  275.         }
  276.         
  277.         /* Optimisations pour tablettes */
  278.         @media (min-width: 577px) and (max-width: 991px) {
  279.             .container {
  280.                 max-width: 95%;
  281.             }
  282.         }
  283.         
  284.         /* Amélioration de l'espacement sur mobile */
  285.         @media (max-width: 768px) {
  286.             .py-5 {
  287.                 padding-top: 3rem !important;
  288.                 padding-bottom: 3rem !important;
  289.             }
  290.             
  291.             .mb-4 {
  292.                 margin-bottom: 1.5rem !important;
  293.             }
  294.             
  295.             .mb-5 {
  296.                 margin-bottom: 2rem !important;
  297.             }
  298.         }
  299.         
  300.         /* Amélioration de la lisibilité sur mobile */
  301.         @media (max-width: 576px) {
  302.             body {
  303.                 font-size: 0.95rem;
  304.             }
  305.             
  306.             h1, h2, h3, h4, h5, h6 {
  307.                 line-height: 1.3;
  308.             }
  309.         }
  310.     </style>
  311. </head>
  312. <body>
  313.     <!-- Navigation -->
  314.     <nav class="navbar navbar-expand-lg navbar-dark fixed-top">
  315.         <div class="container">
  316.             <a class="navbar-brand fw-bold" href="#">
  317.                 <i class="fas fa-graduation-cap me-2"></i>
  318.                 Chiffrage School
  319.             </a>
  320.             
  321.             <!-- Bouton hamburger pour mobile -->
  322.             <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
  323.                 <span class="navbar-toggler-icon"></span>
  324.             </button>
  325.             
  326.             <!-- Menu de navigation -->
  327.             <div class="collapse navbar-collapse" id="navbarNav">
  328.                 <ul class="navbar-nav ms-auto">
  329.                     <li class="nav-item">
  330.                         <a class="nav-link" href="#features">Fonctionnalités</a>
  331.                     </li>
  332.                     <li class="nav-item">
  333.                         <a class="nav-link" href="#about">À propos</a>
  334.                     </li>
  335.                     <li class="nav-item">
  336.                         <a class="nav-link" href="#contact">Contact</a>
  337.                     </li>
  338.                     <li class="nav-item">
  339.                         <a class="nav-link" href="{{ path('app_login') }}">Connexion</a>
  340.                     </li>
  341.                 </ul>
  342.             </div>
  343.         </div>
  344.     </nav>
  345.     <!-- Hero Section -->
  346.     <section class="hero-section">
  347.         <div class="floating-shapes">
  348.             <div class="shape"></div>
  349.             <div class="shape"></div>
  350.             <div class="shape"></div>
  351.         </div>
  352.         <div class="container">
  353.             <div class="row align-items-center hero-content">
  354.                 <div class="col-lg-6 col-md-12 mb-4 mb-lg-0">
  355.                     <h1 class="display-4 fw-bold mb-4">
  356.                         Gestion Scolaire Simplifiée
  357.                     </h1>
  358.                     <p class="lead mb-4">
  359.                         Plateforme complète de gestion administrative et financière pour les établissements scolaires. 
  360.                         Simplifiez vos processus, gérez vos étudiants et suivez vos finances en toute simplicité.
  361.                     </p>
  362.                     <div class="d-flex flex-column flex-sm-row gap-3">
  363.                         <a href="{{ path('app_login') }}" class="cta-button text-center">
  364.                             <i class="fas fa-sign-in-alt me-2"></i>
  365.                             Commencer
  366.                         </a>
  367.                         <a href="#features" class="btn btn-outline-light btn-lg text-center">
  368.                             <i class="fas fa-info-circle me-2"></i>
  369.                             En savoir plus
  370.                         </a>
  371.                     </div>
  372.                 </div>
  373.                 <div class="col-lg-6 col-md-12 text-center">
  374.                     <i class="fas fa-chart-line" style="font-size: clamp(8rem, 15vw, 15rem); opacity: 0.3;"></i>
  375.                 </div>
  376.             </div>
  377.         </div>
  378.     </section>
  379.     <!-- Features Section -->
  380.     <section id="features" class="py-5">
  381.         <div class="container">
  382.             <div class="text-center mb-5">
  383.                 <h2 class="display-5 fw-bold text-dark mb-3">Fonctionnalités Principales</h2>
  384.                 <p class="lead text-muted">Tout ce dont vous avez besoin pour gérer votre établissement</p>
  385.             </div>
  386.             
  387.             <div class="row g-4">
  388.                 <div class="col-lg-4 col-md-6 col-sm-12">
  389.                     <div class="feature-card text-center h-100">
  390.                         <div class="feature-icon">
  391.                             <i class="fas fa-users"></i>
  392.                         </div>
  393.                         <h4 class="fw-bold mb-3">Gestion des Étudiants</h4>
  394.                         <p class="text-muted">
  395.                             Enregistrez et gérez facilement tous vos étudiants avec leurs informations complètes, 
  396.                             dossiers d'inscription détaillés et suivi académique.
  397.                         </p>
  398.                     </div>
  399.                 </div>
  400.                 
  401.                 <div class="col-lg-4 col-md-6 col-sm-12">
  402.                     <div class="feature-card text-center h-100">
  403.                         <div class="feature-icon">
  404.                             <i class="fas fa-calendar-check"></i>
  405.                         </div>
  406.                         <h4 class="fw-bold mb-3">Pointage de Présence</h4>
  407.                         <p class="text-muted">
  408.                             Système de pointage quotidien avec rapports détaillés. 
  409.                             Suivez les présences, absences et retards en temps réel.
  410.                         </p>
  411.                     </div>
  412.                 </div>
  413.                 
  414.                 <div class="col-lg-4 col-md-6 col-sm-12">
  415.                     <div class="feature-card text-center h-100">
  416.                         <div class="feature-icon">
  417.                             <i class="fas fa-credit-card"></i>
  418.                         </div>
  419.                         <h4 class="fw-bold mb-3">Gestion Financière</h4>
  420.                         <p class="text-muted">
  421.                             Gérez les frais scolaires, paiements et devises. 
  422.                             Suivi automatique des montants restants et statuts de paiement.
  423.                         </p>
  424.                     </div>
  425.                 </div>
  426.                 
  427.                 <div class="col-lg-4 col-md-6 col-sm-12">
  428.                     <div class="feature-card text-center h-100">
  429.                         <div class="feature-icon">
  430.                             <i class="fas fa-chart-bar"></i>
  431.                         </div>
  432.                         <h4 class="fw-bold mb-3">Tableaux de Bord</h4>
  433.                         <p class="text-muted">
  434.                             Statistiques en temps réel, rapports détaillés et analyses 
  435.                             pour une prise de décision éclairée.
  436.                         </p>
  437.                     </div>
  438.                 </div>
  439.                 
  440.                 <div class="col-lg-4 col-md-6 col-sm-12">
  441.                     <div class="feature-card text-center h-100">
  442.                         <div class="feature-icon">
  443.                             <i class="fas fa-file-export"></i>
  444.                         </div>
  445.                         <h4 class="fw-bold mb-3">Exports Multi-Formats</h4>
  446.                         <p class="text-muted">
  447.                             Exportez vos données en CSV et Excel. 
  448.                             Rapports personnalisables et filtres avancés.
  449.                         </p>
  450.                     </div>
  451.                 </div>
  452.                 
  453.                 <div class="col-lg-4 col-md-6 col-sm-12">
  454.                     <div class="feature-card text-center h-100">
  455.                         <div class="feature-icon">
  456.                             <i class="fas fa-shield-alt"></i>
  457.                         </div>
  458.                         <h4 class="fw-bold mb-3">Sécurité & Permissions</h4>
  459.                         <p class="text-muted">
  460.                             Système de rôles avancé, contrôle d'accès granulaire 
  461.                             et protection des données sensibles.
  462.                         </p>
  463.                     </div>
  464.                 </div>
  465.             </div>
  466.         </div>
  467.     </section>
  468.     <!-- Stats Section -->
  469.     <section class="stats-section">
  470.         <div class="container">
  471.             <div class="row g-4">
  472.                 <div class="col-lg-3 col-md-6 col-sm-6">
  473.                     <div class="stat-item">
  474.                         <div class="stat-number">100%</div>
  475.                         <div class="text-muted">Sécurisé</div>
  476.                     </div>
  477.                 </div>
  478.                 <div class="col-lg-3 col-md-6 col-sm-6">
  479.                     <div class="stat-item">
  480.                         <div class="stat-number">24/7</div>
  481.                         <div class="text-muted">Disponible</div>
  482.                     </div>
  483.                 </div>
  484.                 <div class="col-lg-3 col-md-6 col-sm-6">
  485.                     <div class="stat-item">
  486.                         <div class="stat-number">+50</div>
  487.                         <div class="text-muted">Fonctionnalités</div>
  488.                     </div>
  489.                 </div>
  490.                 <div class="col-lg-3 col-md-6 col-sm-6">
  491.                     <div class="stat-item">
  492.                         <div class="stat-number">∞</div>
  493.                         <div class="text-muted">Évolutif</div>
  494.                     </div>
  495.                 </div>
  496.             </div>
  497.         </div>
  498.     </section>
  499.     <!-- About Section -->
  500.     <section id="about" class="py-5">
  501.         <div class="container">
  502.             <div class="row align-items-center g-4">
  503.                 <div class="col-lg-6 col-md-12">
  504.                     <h2 class="display-6 fw-bold text-dark mb-4">Pourquoi Chiffrage School ?</h2>
  505.                     <p class="lead text-muted mb-4">
  506.                         Développée spécifiquement pour les établissements scolaires, notre plateforme 
  507.                         combine simplicité d'utilisation et fonctionnalités avancées.
  508.                     </p>
  509.                     <ul class="list-unstyled">
  510.                         <li class="mb-3">
  511.                             <i class="fas fa-check-circle text-success me-2"></i>
  512.                             Interface intuitive et responsive
  513.                         </li>
  514.                         <li class="mb-3">
  515.                             <i class="fas fa-check-circle text-success me-2"></i>
  516.                             Multi-écoles et multi-utilisateurs
  517.                         </li>
  518.                         <li class="mb-3">
  519.                             <i class="fas fa-check-circle text-success me-2"></i>
  520.                             Gestion multi-devises
  521.                         </li>
  522.                         <li class="mb-3">
  523.                             <i class="fas fa-check-circle text-success me-2"></i>
  524.                             Rapports et exports automatisés
  525.                         </li>
  526.                     </ul>
  527.                 </div>
  528.                 <div class="col-lg-6 col-md-12 text-center">
  529.                     <i class="fas fa-rocket" style="font-size: clamp(5rem, 10vw, 10rem); color: var(--secondary-color); opacity: 0.7;"></i>
  530.                 </div>
  531.             </div>
  532.         </div>
  533.     </section>
  534.     <!-- CTA Section -->
  535.     <section class="py-5" style="background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));">
  536.         <div class="container text-center">
  537.             <h2 class="display-6 fw-bold text-white mb-4">Prêt à Commencer ?</h2>
  538.             <p class="lead text-white mb-4">
  539.                 Rejoignez les établissements qui font confiance à Chiffrage School
  540.             </p>
  541.             <a href="{{ path('app_login') }}" class="cta-button btn-lg">
  542.                 <i class="fas fa-play me-2"></i>
  543.                 Démarrer Maintenant
  544.             </a>
  545.         </div>
  546.     </section>
  547.     <!-- Contact Section -->
  548.     <section id="contact" class="py-5" style="background: var(--light-bg);">
  549.         <div class="container">
  550.             <div class="row justify-content-center">
  551.                 <div class="col-lg-8 col-md-12 text-center">
  552.                     <h2 class="display-6 fw-bold text-dark mb-4">Nous Contacter</h2>
  553.                     <p class="lead text-muted mb-5">
  554.                         Prêt à transformer la gestion de votre établissement ? 
  555.                         Contactez-nous pour une démonstration ou pour souscrire à notre plateforme.
  556.                     </p>
  557.                 </div>
  558.             </div>
  559.             
  560.             <div class="row justify-content-center g-4">
  561.                 <div class="col-lg-10 col-md-12">
  562.                     <div class="row g-4">
  563.                         <div class="col-lg-6 col-md-12">
  564.                             <div class="feature-card h-100">
  565.                                 <div class="text-center mb-4">
  566.                                     <i class="fas fa-phone" style="font-size: clamp(2rem, 5vw, 3rem); color: var(--secondary-color);"></i>
  567.                                 </div>
  568.                                 <h4 class="fw-bold text-center mb-3">Par Téléphone</h4>
  569.                                 <div class="text-center">
  570.                                     <p class="mb-2">
  571.                                         <i class="fas fa-phone me-2 text-success"></i>
  572.                                         <strong>+243 000 000 000</strong>
  573.                                     </p>
  574.                                     <p class="text-muted">Lun-Ven: 8h-18h</p>
  575.                                 </div>
  576.                             </div>
  577.                         </div>
  578.                         
  579.                         <div class="col-lg-6 col-md-12">
  580.                             <div class="feature-card h-100">
  581.                                 <div class="text-center mb-4">
  582.                                     <i class="fas fa-envelope" style="font-size: clamp(2rem, 5vw, 3rem); color: var(--secondary-color);"></i>
  583.                                 </div>
  584.                                 <h4 class="fw-bold text-center mb-3">Par Email</h4>
  585.                                 <div class="text-center">
  586.                                     <p class="mb-2">
  587.                                         <i class="fas fa-envelope me-2 text-success"></i>
  588.                                         <strong>contact@chiffrageschool.com</strong>
  589.                                     </p>
  590.                                     <p class="text-muted">Réponse sous 24h</p>
  591.                                 </div>
  592.                             </div>
  593.                         </div>
  594.                     </div>
  595.                     
  596.                     <div class="row mt-4">
  597.                         <div class="col-12">
  598.                             <div class="feature-card">
  599.                                 <div class="text-center mb-4">
  600.                                     <i class="fas fa-calendar-alt" style="font-size: clamp(2rem, 5vw, 3rem); color: var(--secondary-color);"></i>
  601.                                 </div>
  602.                                 <h4 class="fw-bold text-center mb-3">Demander une Démonstration</h4>
  603.                                 <p class="text-center text-muted mb-4">
  604.                                     Nos experts vous feront une démonstration personnalisée de la plateforme 
  605.                                     et répondront à toutes vos questions.
  606.                                 </p>
  607.                                 <div class="text-center">
  608.                                     <a href="mailto:contact@chiffrageschool.com?subject=Demande de démonstration - Chiffrage School" class="cta-button">
  609.                                         <i class="fas fa-calendar-check me-2"></i>
  610.                                         Réserver une Démo
  611.                                     </a>
  612.                                 </div>
  613.                             </div>
  614.                         </div>
  615.                     </div>
  616.                 </div>
  617.             </div>
  618.         </div>
  619.     </section>
  620.     <!-- Footer -->
  621.     <footer class="footer">
  622.         <div class="container">
  623.             <div class="row g-4">
  624.                 <!-- Logo et Description -->
  625.                 <div class="col-lg-6 col-md-6 col-sm-12 mb-4">
  626.                     <div class="d-flex align-items-center mb-3">
  627.                         <i class="fas fa-graduation-cap me-3" style="font-size: clamp(1.5rem, 3vw, 2rem); color: var(--secondary-color);"></i>
  628.                         <h5 class="fw-bold mb-0 text-white">Chiffrage School</h5>
  629.                     </div>
  630.                     <p class="text-white mb-4">
  631.                         Plateforme de gestion scolaire moderne et efficace pour les établissements éducatifs. 
  632.                         Simplifiez vos processus administratifs et financiers.
  633.                     </p>
  634.                 </div>
  635.                 <!-- Liens Rapides -->
  636.                 <div class="col-lg-3 col-md-6 col-sm-6 mb-4">
  637.                     <h6 class="fw-bold text-white mb-3">Liens Rapides</h6>
  638.                     <ul class="list-unstyled">
  639.                         <li class="mb-2">
  640.                             <a href="#features" class="text-white text-decoration-none">Fonctionnalités</a>
  641.                         </li>
  642.                         <li class="mb-2">
  643.                             <a href="#about" class="text-white text-decoration-none">À propos</a>
  644.                         </li>
  645.                         <li class="mb-2">
  646.                             <a href="#contact" class="text-white text-decoration-none">Contact</a>
  647.                         </li>
  648.                         <li class="mb-2">
  649.                             <a href="{{ path('app_login') }}" class="text-white text-decoration-none">Connexion</a>
  650.                         </li>
  651.                     </ul>
  652.                 </div>
  653.                 <!-- Contact Info -->
  654.                 <div class="col-lg-3 col-md-6 col-sm-6 mb-4">
  655.                     <h6 class="fw-bold text-white mb-3">Contact</h6>
  656.                     <ul class="list-unstyled">
  657.                         <li class="mb-2">
  658.                             <i class="fas fa-phone me-2 text-white"></i>
  659.                             <span class="text-white">+243 000 000 000</span>
  660.                         </li>
  661.                         <li class="mb-2">
  662.                             <i class="fas fa-envelope me-2 text-white"></i>
  663.                             <span class="text-white">contact@chiffrageschool.com</span>
  664.                         </li>
  665.                         <li class="mb-2">
  666.                             <i class="fas fa-clock me-2 text-white"></i>
  667.                             <span class="text-white">Lun-Ven: 8h-18h</span>
  668.                         </li>
  669.                     </ul>
  670.                 </div>
  671.             </div>
  672.             <!-- Séparateur -->
  673.             <hr class="my-4" style="border-color: rgba(255,255,255,0.1);">
  674.             <!-- Bottom Footer -->
  675.             <div class="row align-items-center g-3">
  676.                 <div class="col-lg-6 col-md-12 mb-3 mb-lg-0">
  677.                     <p class="text-white mb-0">
  678.                         © 2024 Chiffrage School. Tous droits réservés.
  679.                     </p>
  680.                 </div>
  681.                 <div class="col-lg-6 col-md-12 text-lg-end text-center">
  682.                     <ul class="list-inline mb-0">
  683.                         <li class="list-inline-item">
  684.                             <a href="#" class="text-white text-decoration-none small">Politique de Confidentialité</a>
  685.                         </li>
  686.                         <li class="list-inline-item">
  687.                             <span class="text-white d-none d-sm-inline">|</span>
  688.                         </li>
  689.                         <li class="list-inline-item">
  690.                             <a href="#" class="text-white text-decoration-none small">Conditions d'Utilisation</a>
  691.                         </li>
  692.                         <li class="list-inline-item">
  693.                             <span class="text-white d-none d-sm-inline">|</span>
  694.                         </li>
  695.                         <li class="list-inline-item">
  696.                             <a href="#" class="text-white text-decoration-none small">Mentions Légales</a>
  697.                         </li>
  698.                     </ul>
  699.                 </div>
  700.             </div>
  701.         </div>
  702.     </footer>
  703.     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
  704. </body>
  705. </html> 
  706. </html>