video-list.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. session_start();
  3. if (!isset($_SESSION['loggedin'])) {
  4. header('Location: pages-signin.html');
  5. exit;
  6. }
  7. ?>
  8. <!doctype html>
  9. <html class="fixed">
  10. <head>
  11. <?php include("bim-support-header.html"); ?>
  12. <script src="./script/js/jquery.redirect.js"></script>
  13. <script src="./script/js/global.js"></script>
  14. <script>
  15. var userName = '<?php echo $_SESSION['name']; ?>';
  16. pageHeader = "BIM影音庫";
  17. </script>
  18. </head>
  19. <body>
  20. <section class="body">
  21. <!-- start: header -->
  22. <header-menu></header-menu>
  23. <!-- end: header -->
  24. <div class="inner-wrapper">
  25. <!-- start: sidebar -->
  26. <side-bar></side-bar>
  27. <!-- end: sidebar -->
  28. <section role="main" class="content-body">
  29. <header class="page-header">
  30. <h2>BIM影音網</h2>
  31. <button class="mb-xs mt-xs mr-xs btn btn-default right" type="button" style="float: right;" onclick="initList(parent)">回上層</button>
  32. </header>
  33. <div class="row" id="video-list">
  34. </div>
  35. </section>
  36. </div>
  37. </section>
  38. </div>
  39. <script>
  40. vm.mount('.body');
  41. </script>
  42. <script src="./script/js/video-list.js"></script>
  43. <?php include("bim-support-body.html"); ?>
  44. </section>
  45. </body>
  46. </html>