| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- session_start();
- if (!isset($_SESSION['loggedin'])) {
- header('Location: pages-signin.html');
- exit;
- }
- $folder = "";
- if (isset($_POST["folder"])) {
- $folder = $_POST["folder"];
- }
- ?>
- <!doctype html>
- <html class="fixed">
- <head>
- <?php include("bim-support-header.html"); ?>
- <script src="./script/js/jquery.redirect.js"></script>
- <script src="./script/js/global.js"></script>
- <script>
- var userName = '<?php echo $_SESSION['name']; ?>';
- var folderFromVideoPlay = '<?php echo ($folder); ?>';;
- pageHeader = "亞新教育訓練平台";
- </script>
- </head>
- <body>
- <section class="body">
- <!-- start: header -->
- <header-menu></header-menu>
- <!-- end: header -->
- <div class="inner-wrapper">
- <!-- start: sidebar -->
- <side-bar></side-bar>
- <!-- end: sidebar -->
- <section role="main" class="content-body">
- <header class="page-header">
- <h2>{{pageHeader}}</h2>
- <button class="mb-xs mt-xs mr-xs btn btn-default right" type="button" style="float: right;" onclick="initList(parent)">回上層</button>
- </header>
- <div class="row" id="video-list">
- </div>
- </section>
- </div>
- </section>
- </div>
- <script>
- vm.mount('.body');
- </script>
- <script src="./script/js/video-list.js"></script>
- <?php include("bim-support-body.html"); ?>
- </section>
- </body>
- </html>
|