
* feat: API support for uploading ROM’s * fix: downloads of files larger than approx 300MB would cause an out of memory error * fix: resolved broken bios path * feat: added an upload button
66 lines
2.4 KiB
HTML
66 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link type="text/css" rel="stylesheet" href="/styles/style.css" />
|
|
<script src="/scripts/jquery-3.6.0.min.js"></script>
|
|
<script src="/scripts/moment.js"></script>
|
|
<link href="/styles/select2.min.css" rel="stylesheet" />
|
|
<link rel="stylesheet" href="/styles/dropzone.min.css" type="text/css" />
|
|
<script src="/scripts/select2.min.js"></script>
|
|
<script src="/scripts/dropzone.min.js"></script>
|
|
<script src="/scripts/main.js" type="text/javascript"></script>
|
|
<script src="/scripts/filterformating.js" type="text/javascript"></script>
|
|
<script src="/scripts/gamesformating.js" type="text/javascript"></script>
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<title>Gaseous Games</title>
|
|
</head>
|
|
<body>
|
|
<div id="banner_icon" onclick="window.location.href = '/index.html';">
|
|
<img src="/images/logo.png" alt="Gaseous" id="banner_icon_image" />
|
|
</div>
|
|
<div id="banner_header">
|
|
<div id="banner_header_label">Gaseous Games</div>
|
|
</div>
|
|
<div id="banner_upload" onclick="showDialog('upload');">
|
|
<img src="/images/upload.svg" alt="Upload" title="Upload" id="banner_upload_image" />
|
|
<span id="banner_upload_label">Upload Games</span>
|
|
</div>
|
|
<div id="banner_cog" onclick="window.location.href = '/index.html?page=settings';">
|
|
<img src="/images/settings.svg" alt="Settings" title="Settings" id="banner_system_image" />
|
|
</div>
|
|
|
|
<div id="content">
|
|
|
|
</div>
|
|
|
|
<!-- The Modal -->
|
|
<div id="myModal" class="modal">
|
|
|
|
<!-- Modal content -->
|
|
<div class="modal-content">
|
|
<span class="close">×</span>
|
|
<div><h1 id="modal-heading">Modal heading</h1></div>
|
|
<div id="modal-content">Some text in the Modal..</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">var modalVariables = null;
|
|
|
|
$(document).ready(function () {
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
var myParam = urlParams.get('page');
|
|
|
|
if (!myParam) {
|
|
myParam = 'home';
|
|
}
|
|
|
|
$('#content').load('/pages/' + myParam + '.html');
|
|
});</script>
|
|
</body>
|
|
</html>
|