templates/privacy/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Privacy | CogniEdu{% endblock %}
  3. {% block body %}
  4. <section class="py-5">
  5.   <div class="container">
  6.     <div class="mb-5">
  7.       <h1 class="display-5 fw-bold">Privacy</h1>
  8.       <p class="lead text-muted">
  9.         CogniEdu respects privacy and is designed to help institutions use data responsibly.
  10.         This page explains how we approach privacy, data handling, and institutional control.
  11.       </p>
  12.     </div>
  13.     <div class="row g-4">
  14.       <div class="col-lg-6">
  15.         <div class="card h-100 shadow-sm">
  16.           <div class="card-body">
  17.             <h2 class="h5">Institutional Data Ownership</h2>
  18.             <p class="text-muted mb-0">
  19.               Your institution retains ownership and control of its data. CogniEdu processes data only to provide
  20.               the services you request and does not sell institutional data.
  21.             </p>
  22.           </div>
  23.         </div>
  24.       </div>
  25.       <div class="col-lg-6">
  26.         <div class="card h-100 shadow-sm">
  27.           <div class="card-body">
  28.             <h2 class="h5">Data Minimization</h2>
  29.             <p class="text-muted mb-0">
  30.               We design integrations to collect only the information needed for analytics and forecasting.
  31.               Data mapping and ingestion are structured to avoid unnecessary personal information.
  32.             </p>
  33.           </div>
  34.         </div>
  35.       </div>
  36.     </div>
  37.     <div class="row g-4 mt-1">
  38.       <div class="col-lg-4">
  39.         <div class="card h-100 shadow-sm">
  40.           <div class="card-body">
  41.             <h3 class="h6">Purpose Limitation</h3>
  42.             <ul class="text-muted small mb-0">
  43.               <li>Data is used to deliver agreed platform functionality</li>
  44.               <li>No unrelated profiling or advertising use</li>
  45.               <li>Clear boundaries between platform and marketing data</li>
  46.             </ul>
  47.           </div>
  48.         </div>
  49.       </div>
  50.       <div class="col-lg-4">
  51.         <div class="card h-100 shadow-sm">
  52.           <div class="card-body">
  53.             <h3 class="h6">Access & Controls</h3>
  54.             <ul class="text-muted small mb-0">
  55.               <li>Role-based access aligned to job functions</li>
  56.               <li>Administrative controls and oversight</li>
  57.               <li>Auditability for access and changes</li>
  58.             </ul>
  59.           </div>
  60.         </div>
  61.       </div>
  62.       <div class="col-lg-4">
  63.         <div class="card h-100 shadow-sm">
  64.           <div class="card-body">
  65.             <h3 class="h6">Retention & Deletion</h3>
  66.             <ul class="text-muted small mb-0">
  67.               <li>Retention aligned to institutional needs</li>
  68.               <li>Configurable data lifecycle practices</li>
  69.               <li>Deletion workflows available when required</li>
  70.             </ul>
  71.           </div>
  72.         </div>
  73.       </div>
  74.     </div>
  75.     <div class="row g-4 mt-1">
  76.       <div class="col-lg-6">
  77.         <div class="card h-100 shadow-sm">
  78.           <div class="card-body">
  79.             <h2 class="h5">Security Supports Privacy</h2>
  80.             <p class="text-muted">
  81.               Privacy depends on strong security. CogniEdu uses modern safeguards such as encryption, controlled access,
  82.               and monitoring to reduce risk and protect sensitive data.
  83.             </p>
  84.             <a href="{{ path('security') }}" class="btn btn-outline-secondary btn-sm">View Security</a>
  85.           </div>
  86.         </div>
  87.       </div>
  88.       <div class="col-lg-6">
  89.         <div class="card h-100 shadow-sm">
  90.           <div class="card-body">
  91.             <h2 class="h5">Transparency</h2>
  92.             <p class="text-muted mb-0">
  93.               We believe institutions should understand what data is used, why it’s used, and how it is protected.
  94.               Privacy and governance expectations are addressed during onboarding and implementation.
  95.             </p>
  96.           </div>
  97.         </div>
  98.       </div>
  99.     </div>
  100.     <div class="mt-5 p-4 bg-light rounded-3 border">
  101.       <div class="row align-items-center g-3">
  102.         <div class="col-lg-8">
  103.           <h2 class="h4 mb-1">Have privacy questions?</h2>
  104.           <p class="mb-0 text-muted">
  105.             We can walk through data handling, governance, and access controls during a platform demo.
  106.           </p>
  107.         </div>
  108.         <div class="col-lg-4 text-lg-end">
  109.           {# Update route name if your demo route differs #}
  110.           <a href="{{ path('request_demo') }}" class="btn btn-primary">
  111.             Request a Demo
  112.           </a>
  113.         </div>
  114.       </div>
  115.     </div>
  116.   </div>
  117. </section>
  118. {% endblock %}