templates/extended-session-timeout.html.twig line 1

Open in your IDE?
  1. {{ include('partials/main.html.twig') }}
  2.     <head>
  3.         
  4.         {{ include('partials/title-meta.html.twig', {title: 'Session Timeout'}) }}
  5.         {{ include('partials/head-css.html.twig') }}
  6.     </head>
  7.     {{ include('partials/body.html.twig') }}
  8.         <!-- Begin page -->
  9.         <div id="layout-wrapper">
  10.             {{ include('partials/menu.html.twig') }}
  11.             <!-- ============================================================== -->
  12.             <!-- Start right Content here -->
  13.             <!-- ============================================================== -->
  14.             <div class="main-content">
  15.                 <div class="page-content">
  16.                     <div class="container-fluid">
  17.                         {{ include('partials/page-title.html.twig', {pagetitle: 'Extended', title: 'Session Timeout'}) }}
  18.                         <div class="row">
  19.                             <div class="col-12">
  20.                                 <div class="card">
  21.                                     <div class="card-header">
  22.                                         <h5 class="card-title">Bootstrap-session-timeout</h5>
  23.                                         <p class="card-title-desc">Session timeout and keep-alive control
  24.                                             with a nice Bootstrap warning dialog.</p>
  25.                                     </div>
  26.                                     <div class="card-body">
  27.                                         <div>
  28.                                             <p>After a set amount of idle time, a Bootstrap warning dialog is shown
  29.                                                 to the user with the option to either log out, or stay connected. If
  30.                                                 "Logout" button is selected, the page is redirected to a logout URL.
  31.                                                 If "Stay Connected" is selected the dialog closes and the session is
  32.                                                 kept alive. If no option is selected after another set amount of
  33.                                                 idle time, the page is automatically redirected to a set timeout
  34.                                                 URL.</p>
  35.         
  36.                                             <p>
  37.                                                 Idle time is defined as no mouse, keyboard or touch event activity registered by the browser.
  38.                                             </p>
  39.         
  40.                                             <p class="mb-0">
  41.                                                 As long as the user is active, the (optional) keep-alive URL keeps
  42.                                                 getting pinged and the session stays alive. If you have no need to
  43.                                                 keep the server-side session alive via the keep-alive URL, you can
  44.                                                 also use this plugin as a simple lock mechanism that redirects to
  45.                                                 your lock-session or log-out URL after a set amount of idle time.
  46.                                             </p>
  47.                                         </div>
  48.                                     </div>
  49.                                 </div>
  50.                             </div> <!-- end col -->
  51.                         </div> <!-- end row -->
  52.                         
  53.                     </div> <!-- container-fluid -->
  54.                 </div>
  55.                 <!-- End Page-content -->
  56.                 
  57.                 {{ include('partials/footer.html.twig') }}
  58.             </div>
  59.             <!-- end main content-->
  60.         </div>
  61.         <!-- END layout-wrapper -->
  62.         {{ include('partials/right-sidebar.html.twig') }}
  63.         {{ include('partials/vendor-scripts.html.twig') }}
  64.         <!-- Session timeout js -->
  65.         <script src="/libs/@curiosityx/bootstrap-session-timeout/index.js"></script>
  66.         <!-- Session timeout init js -->
  67.         <script src="/js/pages/session-timeout.init.js"></script>
  68.         <script src="/js/app.js"></script>
  69.     </body>
  70. </html>