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