view.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <!--
  3. Copyright (C) 2021 Echedey López Romero <elr@disroot.org>
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. -->
  15. <html lang='en'>
  16. <head>
  17. <meta charset="UTF-8" />
  18. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  19. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
  20. <meta name="author" content="Echedey López Romero" />
  21. <title>MovieDB</title>
  22. <link rel="stylesheet" href="./frameworks/bootstrap/css/bootstrap.min.css" />
  23. <script src="./frameworks/jquery/jquery-3.5.1.min.js"></script>
  24. <script src="./frameworks/bootstrap/js/bootstrap.bundle.min.js"></script>
  25. <link rel="stylesheet" href="./css/common.css" />
  26. <script async="" src="./js/common.js"></script>
  27. </head>
  28. <body class="container-fluid">
  29. <div class="row my-3">
  30. <div class="col-sm-10 col-12 mx-auto">
  31. <div class="container-fluid">
  32. <div class="row mb-3">
  33. <h1 class="col-lg-6 col-12 mb-lg-0 mb-3 p-2 text-center">MovieDB</h1>
  34. <form class="col-lg-6 col-12 form-inline d-flex justify-content-center">
  35. <input class="form-control mr-3 w-75" type="text" placeholder="Search"
  36. name="search" id="search" value="<?php echo $Search ?>">
  37. <span id="search-icon">&#x26B2;</span>
  38. </form>
  39. </div>
  40. <div class="row">
  41. <?php echo $Page ?>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. </body>
  47. </html>