templates/security/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Security | 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">Security</h1>
  8.       <p class="lead text-muted">
  9.         CogniEdu is designed with security, governance, and institutional trust at its core.
  10.         Our platform protects sensitive institutional data while enabling confident, data-driven decision-making.
  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">Data Protection</h2>
  18.             <ul class="text-muted small mb-0">
  19.               <li>Encryption in transit and at rest</li>
  20.               <li>Secure storage of institutional data</li>
  21.               <li>Separation of customer environments</li>
  22.               <li>Controlled access to sensitive datasets</li>
  23.             </ul>
  24.           </div>
  25.         </div>
  26.       </div>
  27.       <div class="col-lg-6">
  28.         <div class="card h-100 shadow-sm">
  29.           <div class="card-body">
  30.             <h2 class="h5">Access Control</h2>
  31.             <ul class="text-muted small mb-0">
  32.               <li>Role-based access by function and responsibility</li>
  33.               <li>Least-privilege permissions</li>
  34.               <li>Administrative oversight and governance</li>
  35.               <li>Separation of duties for sensitive actions</li>
  36.             </ul>
  37.           </div>
  38.         </div>
  39.       </div>
  40.     </div>
  41.     <div class="row g-4 mt-1">
  42.       <div class="col-lg-4">
  43.         <div class="card h-100 shadow-sm">
  44.           <div class="card-body">
  45.             <h3 class="h6">Infrastructure Security</h3>
  46.             <ul class="text-muted small mb-0">
  47.               <li>Secure cloud-based infrastructure</li>
  48.               <li>Network segmentation and firewalls</li>
  49.               <li>Continuous monitoring and alerting</li>
  50.               <li>Regular system updates and patching</li>
  51.             </ul>
  52.           </div>
  53.         </div>
  54.       </div>
  55.       <div class="col-lg-4">
  56.         <div class="card h-100 shadow-sm">
  57.           <div class="card-body">
  58.             <h3 class="h6">Audit & Accountability</h3>
  59.             <ul class="text-muted small mb-0">
  60.               <li>User activity tracking</li>
  61.               <li>Audit logs for access and changes</li>
  62.               <li>Traceability for reporting and governance</li>
  63.               <li>Support for institutional reviews</li>
  64.             </ul>
  65.           </div>
  66.         </div>
  67.       </div>
  68.       <div class="col-lg-4">
  69.         <div class="card h-100 shadow-sm">
  70.           <div class="card-body">
  71.             <h3 class="h6">Compliance-Ready Design</h3>
  72.             <ul class="text-muted small mb-0">
  73.               <li>Designed to support institutional compliance needs</li>
  74.               <li>Data governance aligned with higher education practices</li>
  75.               <li>Privacy-aware system architecture</li>
  76.               <li>Clear data ownership and control</li>
  77.             </ul>
  78.           </div>
  79.         </div>
  80.       </div>
  81.     </div>
  82.     <div class="mt-5 p-4 bg-light rounded-3 border">
  83.       <div class="row align-items-center g-3">
  84.         <div class="col-lg-8">
  85.           <h2 class="h4 mb-1">Security built for institutional trust</h2>
  86.           <p class="mb-0 text-muted">
  87.             CogniEdu is designed to meet the expectations of higher education leadership, IT, and governance teams.
  88.           </p>
  89.         </div>
  90.         <div class="col-lg-4 text-lg-end">
  91.           {# Update route name if your demo route differs #}
  92.           <a href="{{ path('request_demo') }}" class="btn btn-primary">
  93.             Request a Demo
  94.           </a>
  95.         </div>
  96.       </div>
  97.     </div>
  98.   </div>
  99. </section>
  100. {% endblock %}