summaryrefslogtreecommitdiff
path: root/app/ui/explore.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/ui/explore.php')
-rw-r--r--app/ui/explore.php54
1 files changed, 0 insertions, 54 deletions
diff --git a/app/ui/explore.php b/app/ui/explore.php
deleted file mode 100644
index c93beff..0000000
--- a/app/ui/explore.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php header("X-Frame-Options: SAMEORIGIN"); require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.php"; global $songs; global $albums; ?>
-<!doctype html>
-<html lang="en">
-<head>
- <script>
- if (typeof window.parent.openModal === "undefined") {
- location.href = "/app/#/explore";
- }
- </script>
- <meta charset="UTF-8">
- <meta name="viewport"
- content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>Explore</title>
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
- <link href="/assets/dark.css" rel="stylesheet">
- <link href="/assets/styles.css" rel="stylesheet">
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
- <script src="/assets/localforage.min.js"></script>
- <script src="/assets/fuse.min.js"></script>
- <script src="/assets/js/shortcuts.js"></script>
- <link id="native-css" href="/assets/native.css" rel="stylesheet" disabled>
-</head>
-<body class="crossplatform has-navigation">
- <div id="ui-navigation" style="z-index: 999; background-color: rgba(255, 255, 255, .75); position: fixed; top: 0; left: 0; right: 0; height: 32px; backdrop-filter: blur(50px); -webkit-backdrop-filter: blur(50px);">
- <div style="display: grid; grid-template-columns: max-content 1fr max-content; height: 100%;" class="container">
- <div id="ui-back-button" onclick="history.back();" style="display: flex; align-items: center; justify-content: center; text-align: center; opacity: 0; pointer-events: none;">
- <img src="/assets/icons/back.svg" alt="Back" class="icon">
- </div>
- <div style="display: flex; align-items: center; justify-content: center; text-align: center;"><b>Explore</b></div>
- <div style="opacity: 0; pointer-events: none;">
- <input placeholder="Filter" id="filter" class="form-control" style="width: 256px;height: 32px;border-top: none;" onchange="updateFilter();" onkeyup="updateFilter();">
- </div>
- </div>
- </div>
- <script src="/assets/js/common.js"></script>
- <div class="container">
- <br>
-
- <form action="search.php" onsubmit="window.parent.location.hash = '#/search/' + encodeURIComponent(document.getElementById('search').value);">
- <div style="width: calc(100% - 20px); margin-left: 10px;" class="input-group mb-3">
- <input name="q" type="text" id="search" class="form-control" placeholder="Search on Mist">
- <button class="btn btn-outline-secondary" type="submit" id="btn-search">Search</button>
- </div>
- </form>
-
- <hr style="width: calc(100% - 20px); margin-left: 10px;">
-
- <p style="margin-left: 10px;">To search for content on Mist, start by typing the name of a song, artist or album. Any corresponding results will show up. Should anything you need be missing, you can contact your administrator to ask for more content to be added.</p>
- </div>
-
- <br><br>
-</body>
-</html> \ No newline at end of file