mirror of
https://github.com/aunefyren/wrapperr
synced 2024-12-15 05:32:28 +00:00
b098bc88ad
Better error codes in PHP HTTP response codes CSS changed to <a> elements Changed folder structure of html files to folder with index.html Linking between main, admin and caching pages Added footer to caching page
79 lines
No EOL
2.2 KiB
HTML
79 lines
No EOL
2.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
|
|
<title>Plex Wrapped</title>
|
|
|
|
<!-- Bootstrap 4 CSS and custom CSS -->
|
|
<link rel="stylesheet" type="text/css" href="../assets/css/wrapped.css" />
|
|
<link rel="shortcut icon" href="../assets/img/favicons/favicon.ico" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
|
|
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
|
|
<script src="../caching.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="content" id="login_content" style="">
|
|
|
|
<div class="boks">
|
|
|
|
<div class="boks3" id="search_input" style="padding: 0 !important;">
|
|
|
|
<div class="boks2" style="float: none !important; display: block; padding: 0; margin-top: 0em;">
|
|
<img src="../assets/img/gift.svg" onclick="window.location.href = '../';" style="width: 15em; cursor: pointer;">
|
|
</div>
|
|
|
|
<div class="boks2" style="float: none !important; display: block; margin-top: 0em; padding-top: 0;">
|
|
|
|
<div class="stats_tekst" style="height: auto;">
|
|
<p>
|
|
If you want to decrease loadtime for your users you can pre-cache their results.
|
|
<br><br><a href="../admin">Remember to configure the system first.</a>
|
|
</p>
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<div class="status" id="stats" style="">
|
|
|
|
<h1>Wrapped Caching</h1>
|
|
|
|
<div class="search" id="cache">
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content" id="search_results">
|
|
</div>
|
|
|
|
<div class="footer" id="footer">
|
|
<a style="color: white; font-weight: normal; font-size: 0.75em; text-decoration: none;" href="https://github.com/aunefyren/Plex-Wrapped" target="_blank">Powered by Plex Wrapped</a>
|
|
</div>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var root = "../";
|
|
|
|
$(document).ready(function() {
|
|
|
|
get_config_cache();
|
|
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html> |